blob: 2651c32534f97fb2416728d3a5b5e8a0570855e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import org.aspectj.testing.*;
import ClassWithStaticInnerInterfaces.Inner1;
import ClassWithStaticInnerInterfaces.Inner1.*;
public class ImportingStaticInnerInterfacesStars2_PR386 {
public static void main(String[] args) {
Tester.checkEqual(ClassWithStaticInnerInterfaces.class.getName(),
"ClassWithStaticInnerInterfaces");
Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.class.getName(),
"ClassWithStaticInnerInterfaces$Inner1");
Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.Inner2.class.getName(),
"ClassWithStaticInnerInterfaces$Inner1$Inner2");
Tester.checkEqual(I1.class.getName(), "I1");
Tester.checkEqual(I2.class.getName(), "I2");
}
}
class I1 implements Inner1 {}
class I2 implements Inner2 {}
|