aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-19 23:03:54 +0000
committerjhugunin <jhugunin>2002-12-19 23:03:54 +0000
commitb684b97b9c0aa504fb6b143852e359de02d11002 (patch)
treee3eb2be1d11a0149f7ade87b6da56264e8ceb16b /tests/new
parentc3002200cae795108f88fd5f7949dfa6f31a1616 (diff)
downloadaspectj-b684b97b9c0aa504fb6b143852e359de02d11002.tar.gz
aspectj-b684b97b9c0aa504fb6b143852e359de02d11002.zip
explicitly excluding new preinitialization join points
Diffstat (limited to 'tests/new')
-rw-r--r--tests/new/CflowCycles.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/CflowCycles.java b/tests/new/CflowCycles.java
index 5b48bf76f..3bcabe612 100644
--- a/tests/new/CflowCycles.java
+++ b/tests/new/CflowCycles.java
@@ -17,7 +17,7 @@ class Target {
aspect A1 {
pointcut TargetRunFlow ()
// ok if no cflow: within(Target) && execution(* *(..)) && !within(A1+);
- : !within(A1+) //cflow(within(Target) && execution(* *(..))) && !within(A1+)
+ : !within(A1+) && !preinitialization(new(..)) //cflow(within(Target) && execution(* *(..))) && !within(A1+)
;
Object around () : TargetRunFlow() {
Tester.event("target A1");