mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
12 lines
264 B
Java
12 lines
264 B
Java
// "Surround with 'if ((b ? foo(1) : foo(2)) != null)'" "true"
|
|
class A {
|
|
void bar(String s) {}
|
|
|
|
void foo(boolean b){
|
|
bar(b ? foo(1)<caret> : foo(2));
|
|
}
|
|
|
|
static String foo(int x) {
|
|
return x > 0 ? "pos" : x < 0 ? "neg" : null;
|
|
}
|
|
} |