summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr152871/MyAspect.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs153/pr152871/MyAspect.java')
-rw-r--r--tests/bugs153/pr152871/MyAspect.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs153/pr152871/MyAspect.java b/tests/bugs153/pr152871/MyAspect.java
new file mode 100644
index 000000000..cbad3a906
--- /dev/null
+++ b/tests/bugs153/pr152871/MyAspect.java
@@ -0,0 +1,12 @@
+package a;
+
+import org.aspectj.lang.annotation.*;
+
+@Aspect
+public class MyAspect {
+ //before(): call(* print(..)) {
+ @Before("call(* print(..))")
+ public void m() {
+ System.out.println("advice running");
+ }
+}