mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
Fixes some of annoying cases like reported in IDEA-210010 GitOrigin-RevId: b083327807d85666d1f71f96a90d0eddd616754f
8 lines
152 B
Java
8 lines
152 B
Java
class Test {
|
|
int[] a = new int[10];
|
|
|
|
void foo() {
|
|
int log = 0;
|
|
while (1 << log < <selection>a.length</selection>) log++;
|
|
}
|
|
} |