mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 06:27:54 +07:00
10 lines
186 B
Java
10 lines
186 B
Java
class Test {
|
|
void foo(boolean flag, final String anObject, int... i) {
|
|
if (flag) {
|
|
foo(false, anObject, i);
|
|
}
|
|
System.out.println();
|
|
foo(flag, anObject, i);
|
|
}
|
|
}
|