aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/ImportingStaticInnerInterfacesStars3_PR386.java
blob: 02b15948921efe0c6dc4df97d1b29fc132734c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.aspectj.testing.*;
import ClassWithStaticInnerInterfaces.*;

public class ImportingStaticInnerInterfacesStars3_PR386 {
    public static void main(String[] args) {
        Tester.checkEqual(ClassWithStaticInnerInterfaces.class.getName(),
                           "ClassWithStaticInnerInterfaces");
        Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.class.getName(),
                           "ClassWithStaticInnerInterfaces$Inner1");
        Tester.checkEqual(I1.class.getName(), "I1");
    }
}

class I1 implements Inner1 {}