aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/anonInnerClass/Driver.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/anonInnerClass/Driver.java')
-rw-r--r--tests/new/anonInnerClass/Driver.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/new/anonInnerClass/Driver.java b/tests/new/anonInnerClass/Driver.java
new file mode 100644
index 000000000..d2de525c4
--- /dev/null
+++ b/tests/new/anonInnerClass/Driver.java
@@ -0,0 +1,42 @@
+
+import org.aspectj.testing.Tester;
+
+// PR#297 anonymous inner class with aspect
+
+public class Driver {
+
+ public static String s = "";
+
+ public static void main(String[] args){
+ new Test().go();
+ Tester.checkEqual(s, "-bar-after", "");
+ }
+
+}
+
+class Test {
+ void go(){
+ seto( new I(){
+ public void foo(){ bar(); }
+ });
+ o.foo();
+ }
+
+ void bar(){
+ Driver.s += "-bar";
+ }
+ I o;
+
+ void seto(I o){
+ this.o = o;
+ }
+}
+
+interface I { void foo(); }
+
+aspect A {
+ void around(): this(I) && target(Test) && within(Test) && call(* bar()){
+ proceed();
+ Driver.s += "-after";
+ }
+}