aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/StaticClassesInInterfaces.java
blob: 0e19037dba4ee5c8d7b5b62fc32e031b956e0680 (plain)
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!");
    }
}