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

14 lines
353 B
Java

import org.aspectj.testing.Tester;
import anotherPackage.*;
public class StaticClassesInInterfaces {
public static void main(String[] args) {
new StaticClassesInInterfaces().realMain(args);
}
public void realMain(String[] args) {
AnotherPackageInterface.Inner inner = null;
Tester.check(true, "compiled!");
}
}