org.aspectj/tests/pureJava/ImportingStaticInnerInterfacesStars3_PR386.java

15 lines
553 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
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 {}