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