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