mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
230 B
Java
15 lines
230 B
Java
public class ABl {
|
|
void foo(int fe) {
|
|
System.out.println(fe);
|
|
}
|
|
|
|
void bar(boolean br) {
|
|
int fe = 0;
|
|
if (br) {
|
|
foo(fe);
|
|
} else {
|
|
f<caret>oo(11);
|
|
}
|
|
}
|
|
}
|