mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
172 B
Java
13 lines
172 B
Java
abstract class Base {
|
|
void foo(){}
|
|
}
|
|
|
|
class Sub extends Base {
|
|
int it;
|
|
|
|
@Override
|
|
void foo() {
|
|
<caret><selection>super.foo();</selection>
|
|
}
|
|
}
|