summaryrefslogtreecommitdiffstats
path: root/tests/base/test119/Driver.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/base/test119/Driver.java')
-rw-r--r--tests/base/test119/Driver.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/base/test119/Driver.java b/tests/base/test119/Driver.java
new file mode 100644
index 000000000..b2e971845
--- /dev/null
+++ b/tests/base/test119/Driver.java
@@ -0,0 +1,34 @@
+import org.aspectj.testing.Tester;
+
+public class Driver {
+ public static void main(String[] args) { test(); }
+
+ public static void test() {
+ Foo foo = new Foo();
+ foo.m();
+ }
+}
+
+aspect A {
+ //static advice(): Foo && (void m(..) || new(..)) {
+ //!!!no around advice allowed on constructors right now
+ void around(): target(Foo) && call(void m(..)) {
+ class Internal {
+ int val() { return 1; }
+ }
+ int i = 1;
+ Internal j = new Internal();
+ proceed();
+ Tester.checkEqual(i, 1, "i");
+ Tester.checkEqual(j.val(), 1, "j.val()");
+ }
+}
+
+class Foo {
+ Foo() {
+ // System.out.println("constructor Foo()");
+ }
+ void m() {
+ // System.out.println("method m()");
+ }
+}