mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 12:18:27 +07:00
GitOrigin-RevId: df0c5de380b00f2d42e073a15f4472d52cb34470
8 lines
128 B
Java
8 lines
128 B
Java
interface Foo1 {
|
|
void foo();
|
|
}
|
|
class Bar implements Foo1 {
|
|
public void <caret>foo() {
|
|
System.out.println("hello");
|
|
}
|
|
} |