mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
13 lines
151 B
Java
13 lines
151 B
Java
class Test {
|
|
}
|
|
|
|
class Test2 extends Test {
|
|
void foo(final boolean d) {
|
|
if (d) {
|
|
foo(false);
|
|
}
|
|
System.out.println();
|
|
|
|
}
|
|
}
|