summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/complexExample/X4.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java5/annotations/binding/complexExample/X4.java')
-rw-r--r--tests/java5/annotations/binding/complexExample/X4.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/java5/annotations/binding/complexExample/X4.java b/tests/java5/annotations/binding/complexExample/X4.java
new file mode 100644
index 000000000..edfb63ef1
--- /dev/null
+++ b/tests/java5/annotations/binding/complexExample/X4.java
@@ -0,0 +1,10 @@
+import a.b.c.A;
+
+public aspect X4 {
+
+ // Error as Color not imported
+ before(A a): execution(@Color * A+.*(..)) && this(a) {
+ System.err.println("Before call to "+thisJoinPoint);
+ }
+
+}