aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/EachCFlowRoot1.java
blob: dfac549a87938fdbc742a10c8fb7c91d99b1f8bc (plain)
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 {}