1 2 3 4 5 6 7 8 9 10 11 12 13
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!"); } }