summaryrefslogtreecommitdiffstats
path: root/tests/pureJava/ClassWithInnerInterfaces.java
blob: 239ce0842112100bd105f4f7b2ed38648d9e2faa (plain)
1
2
3
4
5
6
7
public class ClassWithInnerInterfaces {
    public interface Inner1 {
        public interface Inner2 {
            public interface Inner3 {}
        }
    }
}