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

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