mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
12 lines
202 B
Java
12 lines
202 B
Java
class Gen {
|
|
protected Gen clone() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class X2 extends Gen {
|
|
@Override
|
|
protected Gen clone() {
|
|
<caret><selection>return super.clone();</selection>
|
|
}
|
|
} |