mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 06:38:57 +08: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) {
|
||
|
}
|
||
|
}
|
||
|
}
|