blob: 7ccd8d1b439046902fa41f9fde4a10ab0c73265c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import org.aspectj.testing.*;
import ClassWithStaticInnerInterfaces.Inner1;
import ClassWithStaticInnerInterfaces.Inner1.Inner2;
import ClassWithStaticInnerInterfaces.Inner1.Inner2.Inner3;
public class ImportingStaticInnerInterfaces_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(ClassWithStaticInnerInterfaces.Inner1.Inner2.Inner3.class.getName(),
"ClassWithStaticInnerInterfaces$Inner1$Inner2$Inner3");
Tester.checkEqual(I1.class.getName(), "I1");
Tester.checkEqual(I2.class.getName(), "I2");
Tester.checkEqual(I3.class.getName(), "I3");
}
}
class I1 implements Inner1 {}
class I2 implements Inner2 {}
class I3 implements Inner3 {}
|