mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
282 B
Plaintext
17 lines
282 B
Plaintext
class Test {
|
|
public Foo createFoo() {
|
|
return new Foo() {
|
|
public void bar() {
|
|
Test.bar();
|
|
}
|
|
};
|
|
}
|
|
|
|
public static void bar() {
|
|
System.out.println(1);
|
|
}
|
|
|
|
public interface Foo {
|
|
void bar();
|
|
}
|
|
} |