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