mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
Fixes some of annoying cases like reported in IDEA-210010 GitOrigin-RevId: b083327807d85666d1f71f96a90d0eddd616754f
6 lines
88 B
Java
6 lines
88 B
Java
public class whileTrue {
|
|
void test() {
|
|
boolean b = true;
|
|
while(b) {}
|
|
}
|
|
} |