mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
9 lines
178 B
Java
9 lines
178 B
Java
|
|
public final class PR56 {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
Object o = args;
|
||
|
|
int[] a;
|
||
|
|
if (!(o instanceof int[]) || (a = (int[])o).length != 2) {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|