mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
9 lines
201 B
Java
9 lines
201 B
Java
class Test {
|
|
|
|
public static void test(int b) {
|
|
do {
|
|
if (b == 1) break;
|
|
System.out.println();
|
|
} while (<warning descr="Condition is always false">fa<caret>lse</warning>);
|
|
}
|
|
} |