mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
293 B
Java
17 lines
293 B
Java
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();
|
|
}
|
|
} |