diff options
Diffstat (limited to 'tests/pureJava/StaticClassesInInterfaces.java')
-rw-r--r-- | tests/pureJava/StaticClassesInInterfaces.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/pureJava/StaticClassesInInterfaces.java b/tests/pureJava/StaticClassesInInterfaces.java new file mode 100644 index 000000000..0e19037db --- /dev/null +++ b/tests/pureJava/StaticClassesInInterfaces.java @@ -0,0 +1,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!"); + } +} |