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

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