mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
14 lines
150 B
Java
14 lines
150 B
Java
interface I {
|
|
void f();
|
|
}
|
|
interface II extends I {
|
|
@Override
|
|
void f();
|
|
}
|
|
class C implements I {
|
|
@Override
|
|
public void f() {
|
|
|
|
}
|
|
}
|