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