/**
 * Test that multidimensional arrays work.
 */
class C {
    int const[][] a = {
            new int[] { 1, 2, 3 },
            new int[] { 4, 5, 6 },
            new int[] { 7, 8, 9 } };

    public void foo() {
        a = new int[][] {
                        new int[] { 1, 2, 3 },
                        new int[] { 4, 5, 6 },
                        new int[] { 7, 8, 9 } };
    }
}
