You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StaticClassesInInterfaces.java 353B

12345678910111213
  1. import org.aspectj.testing.Tester;
  2. import anotherPackage.*;
  3. public class StaticClassesInInterfaces {
  4. public static void main(String[] args) {
  5. new StaticClassesInInterfaces().realMain(args);
  6. }
  7. public void realMain(String[] args) {
  8. AnotherPackageInterface.Inner inner = null;
  9. Tester.check(true, "compiled!");
  10. }
  11. }