mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-22 04:45:29 +07:00
10 lines
133 B
Java
10 lines
133 B
Java
interface Test {
|
|
void foo();
|
|
}
|
|
|
|
class B implements Test {
|
|
@Override
|
|
public void foo() {
|
|
System.out.println();
|
|
}
|
|
} |