aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/AroundDoubleAssignmentC.java
diff options
context:
space:
mode:
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 {