2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.lang / PR56.java
blob27f7c3021cdc56a627944db3a706972e7d9bf999
1 public final class PR56 {
2 public static void main(String[] args) {
3 Object o = args;
4 int[] a;
5 if (!(o instanceof int[]) || (a = (int[])o).length != 2) {