blob: f7bc96068446e0fdb81bd913b52aff0540965fe7 [file] [log] [blame]
class Test {
public Foo createFoo() {
return new Foo() {
public void bar() {
Test.this.bar();
}
};
}
public void bar() {
System.out.println(1);
}
public interface Foo {
void bar();
}
}