mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
13 lines
241 B
Java
13 lines
241 B
Java
// "Use existing implementation of 'foo'" "true"
|
|
interface I {
|
|
void foo();
|
|
}
|
|
class IImpl implements I {
|
|
@Override
|
|
public void foo() {}
|
|
}
|
|
|
|
interface II extends I {}
|
|
class IImpl2 extends IImpl implements II {
|
|
public void foo() {}
|
|
} |