mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
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");
|
|
}
|
|
} |