mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
10 lines
220 B
Java
10 lines
220 B
Java
class WithCondition {
|
|
void testForEach() {
|
|
return;
|
|
<error descr="Unreachable statement">for</error> (int i: this.array()) {
|
|
System.out.println("Never");
|
|
}
|
|
}
|
|
|
|
int[] array() { return new int[0]; }
|
|
} |