org.aspectj/tests/errors/PR405.java

17 lines
318 B
Java
Raw Normal View 히스토리

2002-12-16 19:51:06 +01:00
import org.aspectj.testing.Tester;
public class PR405 {
public static void main(String[] args) {
new PR405().realMain(args);
}
public void realMain(String[] args) {
Tester.check(false, "Shouldn't have compiled");
}
public PR405() {
}
}
class C {
int foo(){ return 1 }
}