mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-30 17:27:53 +07:00
15 lines
172 B
Java
15 lines
172 B
Java
interface I {
|
|
Object clone();
|
|
}
|
|
|
|
interface J extends I {
|
|
}
|
|
|
|
class CBase implements I {
|
|
}
|
|
|
|
class C extends CBase implements J {
|
|
{
|
|
super.<ref>clone();
|
|
}
|
|
} |