Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-1197666

allocating multi-dimensional arrays broken

XMLWordPrintable

    • 1.0alpha3
    • sparc
    • generic
    • Not verified

      This code worked with the alpha1 compiler, but doesn't with alpha2.

      > 1 class foo {
      > 2 boolean b[][];
      > 3
      > 4 foo() {
      > 5 b = new boolean[10][];
      > 6
      > 7 for (int i=0; i<10; i++)
      > 8 b[i] = new boolean[2];
      > 9 }
      > 10
      > 11 public static void main(String args[]) {
      > 12 foo f = new foo();
      > 13 System.out.println("Ok");
      > 14 }
      > 15 }

      Rutime error message:

      > Exception in thread "main" java.lang.IncompatibleTypeException
      > at foo.<init>(foo.java:8)
      > at foo.main(foo.java:12)

            ahoffsunw Arthur Hoff (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: