1 class Foo { 2 void foo() { } 3 } 4 5 class Bar { 6 void bar() { 7 new Foo() { 8 void extraFoo() { 9 this.foo(); 10 } 11 }; 12 } 13 }