blob: a558365a293a54d0f21647dc211afbd1c7b641a8 [file] [log] [blame]
class Foo {
void foo() { }
}
class Bar {
void bar() {
new Foo() {
void extraFoo() {
this.foo();
}
};
}
}