Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2001-10-28 18:07:08 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-10-28 18:07:08 +0300
commit27d1428d86648cd314a37ac366b04c91b5c6d1fc (patch)
tree98be3dd17e1c9134efd575e881b0c4572a123f0d /mcs/tests/test-32.cs
parent791ce25fc7d6ca999ebd4415efa6822a96f1183f (diff)
Add another test to array creation
svn path=/trunk/mcs/; revision=1223
Diffstat (limited to 'mcs/tests/test-32.cs')
-rw-r--r--mcs/tests/test-32.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/tests/test-32.cs b/mcs/tests/test-32.cs
index afeaecbf82b..94399b230e2 100644
--- a/mcs/tests/test-32.cs
+++ b/mcs/tests/test-32.cs
@@ -12,6 +12,8 @@ public class Blah {
Blah [,][] l = new Blah [3,4][];
+ Uri [] uri = new Uri [4];
+
Console.WriteLine ("All arrays successfully created");
return 0;