aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/AroundDoubleAssignmentC.java
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-31 00:54:23 +0000
committerjhugunin <jhugunin>2002-12-31 00:54:23 +0000
commit742ae9055d4c9caa2194c64a129ba2d94b0fb6ec (patch)
treede475a272547be8dafa7d665e71da68edbe73030 /tests/new/AroundDoubleAssignmentC.java
parent2df90bb2b709ad637e98ae57c55f307632fae3e2 (diff)
downloadaspectj-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.java12
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 {