aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/AdviceOnIntroduced.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/AdviceOnIntroduced.java')
-rw-r--r--tests/new/AdviceOnIntroduced.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/AdviceOnIntroduced.java b/tests/new/AdviceOnIntroduced.java
index 4da93f0ca..4a3bba55d 100644
--- a/tests/new/AdviceOnIntroduced.java
+++ b/tests/new/AdviceOnIntroduced.java
@@ -8,7 +8,7 @@ public aspect AdviceOnIntroduced {
}
int Foo.foo(int n) { return n; }
- Foo.new(int w) {}
+ Foo.new(int w) { this(); }
int around(int n):
within(AdviceOnIntroduced) &&