summaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoraclement <aclement>2009-01-30 22:23:34 +0000
committeraclement <aclement>2009-01-30 22:23:34 +0000
commit6133a38cd5579c94afe5790866cfe18f2e15fb33 (patch)
tree0d6076956dd6f88c8997b2ca4aefdba5ca089fbe /tests/bugs150
parent04509cc64423b8e34e3ef44396557ace8073df9e (diff)
downloadaspectj-6133a38cd5579c94afe5790866cfe18f2e15fb33.tar.gz
aspectj-6133a38cd5579c94afe5790866cfe18f2e15fb33.zip
262905: recursive non matching cflow pointcut: corrected testcase
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/PR93345.aj2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs150/PR93345.aj b/tests/bugs150/PR93345.aj
index 4950aa6e9..09ddb86fe 100644
--- a/tests/bugs150/PR93345.aj
+++ b/tests/bugs150/PR93345.aj
@@ -4,7 +4,7 @@ class AClass {
}
aspect AnAspect {
- pointcut a() : cflow( execution(* *(..)) );
+ pointcut a() : execution(* *(..)) && cflow( execution(* *(..)) );
before() : a() {
System.out.println("before a");