diff options
author | jhugunin <jhugunin> | 2002-12-31 00:54:23 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-31 00:54:23 +0000 |
commit | 742ae9055d4c9caa2194c64a129ba2d94b0fb6ec (patch) | |
tree | de475a272547be8dafa7d665e71da68edbe73030 /tests/new/AroundDoubleAssignmentC.java | |
parent | 2df90bb2b709ad637e98ae57c55f307632fae3e2 (diff) | |
download | aspectj-742ae9055d4c9caa2194c64a129ba2d94b0fb6ec.tar.gz aspectj-742ae9055d4c9caa2194c64a129ba2d94b0fb6ec.zip |
can't do around x initialization
Diffstat (limited to 'tests/new/AroundDoubleAssignmentC.java')
-rw-r--r-- | tests/new/AroundDoubleAssignmentC.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/new/AroundDoubleAssignmentC.java b/tests/new/AroundDoubleAssignmentC.java index 8127e57ac..edb481d4d 100644 --- a/tests/new/AroundDoubleAssignmentC.java +++ b/tests/new/AroundDoubleAssignmentC.java @@ -32,7 +32,8 @@ public aspect AroundDoubleAssignmentC { // instance initializer Tester.expectEvent("init"); - Tester.expectEvent("proceed-init"); + //XXX see below + //Tester.expectEvent("proceed-init"); String s = new Init().string; Tester.check("test".equals(s), "\"test\".equals(new Init().string)"); @@ -62,10 +63,11 @@ public aspect AroundDoubleAssignmentC { } // instance initializer - Object around() : initialization(Init.new(..)) { - Tester.event("proceed-init"); - return proceed(); - } + //XXX not implemented in 1.1 +// Object around() : initialization(Init.new(..)) { +// Tester.event("proceed-init"); +// return proceed(); +// } } class FieldInit { |