blob: 360dda36bc7dfef952708807c2651e4a087222e1 [file] [log] [blame]
// "Push condition 'b' inside method call" "true"
class Foo {
void bar(boolean b){
String s = foo(b ? "true" : "false");
}
String foo(String p) {return p;}
}