Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-32.cs
1 using System;
2
3 public class Blah {
4
5         public static int Main ()
6         {
7                 int [][] i = new int [2][];
8
9                 int [,][] j = new int [3,6][];
10
11                 Blah [] k = new Blah [2];
12
13                 Blah [,][] l = new Blah [3,4][];
14
15                 Uri [] uri = new Uri [4];
16
17                 Console.WriteLine ("All arrays successfully created");
18
19                 return 0;
20         }
21 }