summaryrefslogtreecommitdiffstats
path: root/tests/errors/StaticPointcutRefs.java
blob: 3d8a757748a51eeddb14f9fe320ef14001fa1957 (plain)
1
2
3
4
5
6
7
8
9
10
public class StaticPointcutRefs {
}

abstract aspect A1 {
    abstract pointcut ocut(); //: call(* *(..));

    static aspect AI {
        before(): ocut() {} //ERROR static reference to abstract PCD
    }
}