mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
Fixes some of annoying cases like reported in IDEA-210010 GitOrigin-RevId: b083327807d85666d1f71f96a90d0eddd616754f
12 lines
214 B
Java
12 lines
214 B
Java
class Test {
|
|
int[] a = new int[10];
|
|
|
|
void foo() {
|
|
int log = 0;
|
|
while (true) {
|
|
int temp = a.length;
|
|
if (!(1 << log < temp)) break;
|
|
log++;
|
|
}
|
|
}
|
|
} |