blob: 30ca4ef9fa6435557f245ad1a132d479b0c3bb19 [file] [log] [blame]
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() {};
}
}