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