// "Push condition 'b' inside method call" "true" class Foo { void bar(boolean b){ String s = b ? foo("true", true).substring(0) : foo("false", true).substring(0); } String foo(String p, boolean b) {return p;} }