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() {};
| }
| }
|
|