org.aspectj/tests/errors/BadVar.java

13 lines
278 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
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");
}
}