aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/EachCFlow0.java
blob: c25a4547d5291a12c6205a21e278c788b8a7ad95 (plain)
1
2
3
4
5
6
7
8
9
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 {}