aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/TopLevelAround.java
blob: 89e99cfd2de2965abdba944abc7138e3373b7105 (plain)
1
2
3
4
5
6
7
8
9
10
import org.aspectj.testing.Tester;

void around(): call(void main(..)) {} // CE 3

public aspect TopLevelAround {
    public static void main(String[] args) {
        Tester.check(false, "should not have compiled");
    }
}