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:
Diffstat (limited to 'mcs/tests/test-32.cs')
-rw-r--r--mcs/tests/test-32.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/mcs/tests/test-32.cs b/mcs/tests/test-32.cs
deleted file mode 100644
index 94399b230e2..00000000000
--- a/mcs/tests/test-32.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-
-public class Blah {
-
- public static int Main ()
- {
- int [][] i = new int [2][];
-
- int [,][] j = new int [3,6][];
-
- Blah [] k = new Blah [2];
-
- Blah [,][] l = new Blah [3,4][];
-
- Uri [] uri = new Uri [4];
-
- Console.WriteLine ("All arrays successfully created");
-
- return 0;
- }
-}