blob: 6698ea48fd4c0d821eb19705370bde7c14a38676 [file] [log] [blame]
class Test {
public Foo createFoo() {
return new Foo() {
public void bar() {
System.out.println(1);
}
};
}
public void b<caret>ar(int i) {
System.out.println(i);
}
public interface Foo {
void bar();
}
}