mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 17:16:50 +07:00
10 lines
172 B
Java
10 lines
172 B
Java
// "b false" "true"
|
|
public class Test {
|
|
void foo(boolean f<caret>){
|
|
if (f) {
|
|
Syste.out.print(f);
|
|
}
|
|
}
|
|
void bar(){foo(false);}
|
|
void bar1(){foo(true);}
|
|
} |