aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-testing/src/test/resources/Issue235.java.txt
blob: 30ca4ef9fa6435557f245ad1a132d479b0c3bb19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Foo {
    static class Bar {
        static class Baz {}
    }
    static void new_Bar_Baz_direct() {
        new Bar.Baz();
    }
    static void new_Bar_Baz() {
        new Bar.Baz() {};
    }
    static void new_Bar() {
        new Bar() {};
    }
    static void new_Foo_Bar() {
        new Foo.Bar() {};
    }
}