org.aspectj/tests/errors/BadCast.java
2002-12-16 18:51:06 +00:00

13 regels
283 B
Java

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");
}
}