1class Foo {
2 static class Bar {
3 static class Baz {}
4 }
5 static void new_Bar_Baz_direct() {
6 new Bar.Baz();
7 }
8 static void new_Bar_Baz() {
9 new Bar.Baz() {};
10 }
11 static void new_Bar() {
12 new Bar() {};
13 }
14 static void new_Foo_Bar() {
15 new Foo.Bar() {};
16 }
17}
18