diff options
Diffstat (limited to 'tests/new/EachCFlowRoot0.java')
-rw-r--r-- | tests/new/EachCFlowRoot0.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/new/EachCFlowRoot0.java b/tests/new/EachCFlowRoot0.java new file mode 100644 index 000000000..c25a4547d --- /dev/null +++ b/tests/new/EachCFlowRoot0.java @@ -0,0 +1,10 @@ +import org.aspectj.testing.Tester; +public class EachCFlowRoot0 { + public static void main(String[] args) { + Tester.check(true, "compiled"); + } +} +aspect A of eachcflow(A.pc() && !cflow(A.pc())) { + pointcut pc() : within(C) ; +} +class C {} |