dlr bug
[mcs.git] / tests / test-32.cs
blob94399b230e2f345a41e450273ac0b62b41d381f8
1 using System;
3 public class Blah {
5 public static int Main ()
7 int [][] i = new int [2][];
9 int [,][] j = new int [3,6][];
11 Blah [] k = new Blah [2];
13 Blah [,][] l = new Blah [3,4][];
15 Uri [] uri = new Uri [4];
17 Console.WriteLine ("All arrays successfully created");
19 return 0;