mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
Fixes some of annoying cases like reported in IDEA-210010 GitOrigin-RevId: b083327807d85666d1f71f96a90d0eddd616754f
11 lines
209 B
Java
11 lines
209 B
Java
import java.util.Arrays;
|
|
|
|
class Test {
|
|
void test(int x, int y, int z) {
|
|
while (x > 0) {
|
|
boolean temp = z > 0;
|
|
if (!(y < 0 || temp)) break;
|
|
z++;
|
|
}
|
|
}
|
|
} |