1 2 3 4 5 6 7 8 9 10 11
import org.aspectj.testing.Tester; public class EachCFlowRoot1 { public static void main(String[] args) { Tester.check(true, "compiled"); } } aspect A of eachcflow(A.pctop()) { pointcut pc() : within(C) ; pointcut pctop(): pc() && !cflow(pc()); } class C {}