summaryrefslogtreecommitdiffstats
path: root/tests/errors/Colon.java
blob: ffa00b6090248927f04982ba66f1c2c9fb707ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.testing.*;

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