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