summaryrefslogtreecommitdiffstats
path: root/tests/new/EachCFlowRoot2.java
blob: 90c2361efa40fbee1a7a366214d56e46ab877fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.testing.Tester;
public class EachCFlowRoot2 {
    public static void main(String[] args) {
        Tester.check(true, "compiled");
    }
}
aspect A  of eachcflow(B.pctop()) {
    pointcut pc() : within(C) ;
}
aspect B {
    pointcut pctop(): within(C) && !cflow(within(C));
}
class C {}