1
0
espelhamento de https://github.com/eclipse-aspectj/aspectj.git sincronizado 2024-08-26 17:58:43 +02:00
org.aspectj/tests/pureJava/ImplicitThisMissing.java
2002-12-16 18:51:06 +00:00

8 linhas
158 B
Java

public class ImplicitThisMissing {
class B {}
public static void main(String[] args) {
new B();
System.err.println("shouldn't compile!!!");
}
}