1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-07-22 12:59:42 +02:00
org.aspectj/tests/errors/BadValue.java
2002-12-16 18:51:06 +00:00

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