mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
15 lines
174 B
Java
15 lines
174 B
Java
interface I {
|
|
Object clone();
|
|
}
|
|
|
|
interface J extends I {
|
|
}
|
|
|
|
class CBase implements I {
|
|
}
|
|
|
|
class C extends CBase implements J {
|
|
{
|
|
super.<caret>clone();
|
|
}
|
|
} |