mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 2bdcfb4957026ad83b3e54925f20c0133d29d6c6
13 lines
365 B
Java
13 lines
365 B
Java
import java.util.Collection;
|
|
import java.util.ArrayList;
|
|
|
|
class X {
|
|
public static void main(String[] args) {
|
|
Collection<Integer>[] a = new Collection[2];
|
|
for (int t = 0; t < 2; t++) a[t] = new ArrayList<>();
|
|
for (int i = 0; i < 4; i++) a[i % 2].add(i);
|
|
if (a[0].isEmpty() || a[1].isEmpty()) {
|
|
System.out.println("never happens");
|
|
}
|
|
}
|
|
} |