diff options
Diffstat (limited to 'tests/new/AroundCall.java')
-rw-r--r-- | tests/new/AroundCall.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/AroundCall.java b/tests/new/AroundCall.java index 1a6905493..680f299c4 100644 --- a/tests/new/AroundCall.java +++ b/tests/new/AroundCall.java @@ -20,7 +20,7 @@ aspect TestAspect { /** @testcase PR#666 name binding in around cflow */ void around(final int n) : // no bug if before advice cflow(execution(void AroundCall.a(int)) && args(n)) // no bug if no args - && target(AroundCall) + && target(AroundCall) && !initialization(new(..)) { Tester.event("around"); if (n > 100) proceed(n); // some bugs hidden without call to proceed |