mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
8 lines
295 B
Java
8 lines
295 B
Java
class Test {
|
|
|
|
public static void test() {
|
|
for(int a = 1; <warning descr="Condition is always false">fal<caret>se</warning>; System.out.println("Just anything here: will not be executed anyways")) {
|
|
<error descr="Unreachable statement">System.out.println("Hello");</error>
|
|
}
|
|
}
|
|
} |