Hi,

The following program:

public class Test
{
  static final char[] initCharArray =
      new char[] {'\u0000', '\u0000', '\u0000', '\u0000', '\u0000',
'\u0000'};
  public static final char[][][][] charArray_length =
      new char[1][1][1][];

  public static void main(String[] args)
  {
    charArray_length[0][0][0] = initCharArray;
  }
}

gives:

java.lang.ArrayStoreException: can't store `[C' in `[[[C'
   at Test.main (Test.java:10)

But this is a perfectly valid store.

Hope someone immediately knows where in the source this array store is
done.

Cheers,

Mark

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe

Reply via email to