mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +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);
|
|
}
|
|
}
|