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

14 rivejä
303 B
Java

import org.aspectj.testing.*;
public class BadValue {
public static void main(String[] args) {
new BadValue().realMain(args);
}
public void realMain(String[] args) {
int i = ,;
//String s = ,;
Tester.check(false, "Shouldn't have compiled");
}
}