mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
11 lines
175 B
Java
11 lines
175 B
Java
class D {
|
|
void f<caret>oo(Object o){}
|
|
}
|
|
|
|
class DImpl extends D {
|
|
void foo(Object o1) {
|
|
super.foo(o1);
|
|
int o = 0;
|
|
System.out.println(o);
|
|
}
|
|
} |