mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 06:39:33 +07:00
GitOrigin-RevId: 9e7403383296cfa3c9478d8e635e592d31ba0518
13 lines
142 B
Java
13 lines
142 B
Java
public class AlwaysFalseForLoop {
|
|
void test() {
|
|
int i = 0;
|
|
i++;
|
|
|
|
}
|
|
|
|
void test2() {
|
|
for(int j=0; false; j++) {
|
|
|
|
}
|
|
}
|
|
} |