summaryrefslogtreecommitdiffstats
path: root/tests/new/PR559.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/PR559.java
parent2df90bb2b709ad637e98ae57c55f307632fae3e2 (diff)
downloadaspectj-742ae9055d4c9caa2194c64a129ba2d94b0fb6ec.tar.gz
aspectj-742ae9055d4c9caa2194c64a129ba2d94b0fb6ec.zip
can't do around x initialization
Diffstat (limited to 'tests/new/PR559.java')
-rw-r--r--tests/new/PR559.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/new/PR559.java b/tests/new/PR559.java
index a612c9b81..c8da6e4ae 100644
--- a/tests/new/PR559.java
+++ b/tests/new/PR559.java
@@ -32,7 +32,8 @@ public class PR559 {
}
interface AspectMarker {
- pointcut notInAspect() : ! within(AspectMarker+) && !preinitialization(new(..));
+ pointcut notInAspect() : ! within(AspectMarker+) &&
+ !preinitialization(new(..)) && !initialization(new(..));
pointcut allTarget() : execution(* Target.*(..)) ;
pointcut allTargetFlow() : cflow(allTarget());
pointcut inTarget() : notInAspect() && allTarget();