blob: d4d0b5bdcc7f125bd21301bebab408e0f17acf7c [file] [log] [blame]
class Test {
void bar() {
new Inner().foo();
}
static class Inner {
void foo(){}
}
}