mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
11 lines
193 B
Java
11 lines
193 B
Java
class D {
|
|
void foo(Object o, boolean b){}
|
|
}
|
|
|
|
class DImpl extends D {
|
|
void foo(Object o1, boolean b) {
|
|
super.foo(o1, b);
|
|
int o = 0;
|
|
System.out.println(o);
|
|
}
|
|
} |