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

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