aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/BadVar.java
blob: 044ef93a50749b7aad890eca8bad4ecf04588293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.testing.*;

public class BadVar {
    public static void main(String[] args) {
        new BadVar().realMain(args);
    }
    
    public void realMain(String[] args) {
        int _ _ = 13;
        Tester.check(false, "Shouldn't have compiled");
    }
}