diff options
author | aclement <aclement> | 2009-01-30 22:23:34 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-01-30 22:23:34 +0000 |
commit | 6133a38cd5579c94afe5790866cfe18f2e15fb33 (patch) | |
tree | 0d6076956dd6f88c8997b2ca4aefdba5ca089fbe /tests/bugs150 | |
parent | 04509cc64423b8e34e3ef44396557ace8073df9e (diff) | |
download | aspectj-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.aj | 2 |
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"); |