mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
Fixes some of annoying cases like reported in IDEA-210010 GitOrigin-RevId: b083327807d85666d1f71f96a90d0eddd616754f
10 lines
166 B
Java
10 lines
166 B
Java
class Test {
|
|
void test() {
|
|
while (true) {
|
|
boolean temp = foo();
|
|
if (!temp) break;
|
|
}
|
|
}
|
|
|
|
native boolean foo();
|
|
} |