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