mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
7 lines
253 B
Java
7 lines
253 B
Java
// "Push condition 'b' inside method call" "true"
|
|
class Foo {
|
|
void bar(boolean b){
|
|
String s = b <caret>? foo("true", true).substring(1).substring(0) : foo("true", true).substring(2).substring(0);
|
|
}
|
|
String foo(String p, boolean b) {return p;}
|
|
} |