Files
2021-12-14 13:26:42 +00:00

12 lines
337 B
Java

class Test {
public static void test() {
while (<error descr="Loop condition is always false making the loop body unreachable">(false)</error>) {
System.out.println();
}
boolean c = false;
while ((<warning descr="Condition 'c' is always 'false'"><caret>c</warning>)) {
System.out.println();
}
}
}