mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
18 lines
195 B
Java
18 lines
195 B
Java
class C {
|
|
int i;
|
|
|
|
private void foo() {
|
|
foo(i);
|
|
}
|
|
|
|
private static void foo(int i) {
|
|
if (true) {
|
|
foo(i);
|
|
}
|
|
System.out.println(i);
|
|
}
|
|
|
|
{
|
|
foo();
|
|
}
|
|
} |