mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 9e7403383296cfa3c9478d8e635e592d31ba0518
12 lines
337 B
Java
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();
|
|
}
|
|
}
|
|
} |