mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
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++) {
|
|
|
|
}
|
|
}
|
|
} |