diff options
Diffstat (limited to 'tests/pureJava/ClassWithStaticInnerInterfaces.java')
-rw-r--r-- | tests/pureJava/ClassWithStaticInnerInterfaces.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pureJava/ClassWithStaticInnerInterfaces.java b/tests/pureJava/ClassWithStaticInnerInterfaces.java new file mode 100644 index 000000000..eabefea65 --- /dev/null +++ b/tests/pureJava/ClassWithStaticInnerInterfaces.java @@ -0,0 +1,7 @@ +public class ClassWithStaticInnerInterfaces { + public static interface Inner1 { + public static interface Inner2 { + public static interface Inner3 {} + } + } +} |