aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-testing/src/test/resources/ClassWithTypes.java.txt
blob: 0c1ed60a16a798269d4bf4723d85fee5fe0cec02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Super {
    protected boolean k;
    private static char m;

}

class A extends Super {

    class B {
        class C {

        }
    }

    enum E {
        E1, E2
    }

}