summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr186673/A.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs154/pr186673/A.java')
-rw-r--r--tests/bugs154/pr186673/A.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/bugs154/pr186673/A.java b/tests/bugs154/pr186673/A.java
new file mode 100644
index 000000000..c064fb795
--- /dev/null
+++ b/tests/bugs154/pr186673/A.java
@@ -0,0 +1,19 @@
+import org.aspectj.lang.annotation.*;
+import org.aspectj.lang.*;
+
+@interface I {}
+
+@I
+public class A {
+ public void m() {}
+}
+
+@Aspect
+class X {
+ @Around("execution(* (@I *).*(..))")
+ public Object foo(ProceedingJoinPoint pjp) {
+return null;
+ }
+}
+
+