blob: 55ea93060c401ed6e9bc12eeaf14dd0767c808e9 [file] [log] [blame]
// "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);}
}