mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
8 lines
215 B
Java
8 lines
215 B
Java
// "Move up into 'if' statement branches" "false"
|
|
class X {
|
|
void test(int x) {
|
|
if (x > 0) System.out.println(">0"); else if (x < 0) {}
|
|
<selection>int y = x * 2;</selection>
|
|
System.out.println(y);
|
|
}
|
|
} |