mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 10:45:23 +07:00
10 lines
162 B
Java
10 lines
162 B
Java
// "f 5" "true"
|
|
public class Test {
|
|
void foo(int <caret>f){
|
|
if (f == 5) {
|
|
Syste.out.print(f);
|
|
}
|
|
}
|
|
void bar(){foo(5);}
|
|
void bar1(){foo(5);}
|
|
} |