From 6133a38cd5579c94afe5790866cfe18f2e15fb33 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 30 Jan 2009 22:23:34 +0000 Subject: [PATCH] 262905: recursive non matching cflow pointcut: corrected testcase --- tests/bugs150/PR93345.aj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.39.5