summaryrefslogtreecommitdiffstats
path: root/tests/bugs183/436653/X.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs183/436653/X.java')
-rw-r--r--tests/bugs183/436653/X.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs183/436653/X.java b/tests/bugs183/436653/X.java
new file mode 100644
index 000000000..0f19a6190
--- /dev/null
+++ b/tests/bugs183/436653/X.java
@@ -0,0 +1,6 @@
+import org.aspectj.lang.annotation.*;
+
+@RequiredTypes("A")
+aspect X {
+ before(): execution(* Code.*(..)) {System.out.println("x");}
+}