mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
17 lines
208 B
Java
17 lines
208 B
Java
class Test {
|
|
void fo<caret>o(final boolean d) {
|
|
if (d) {
|
|
foo(false);
|
|
}
|
|
System.out.println();
|
|
|
|
}
|
|
}
|
|
|
|
class Test2 extends Test {
|
|
@Override
|
|
void foo(final boolean d) {
|
|
super.foo(d);
|
|
}
|
|
}
|