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/errors/cs0178.cs')
-rw-r--r--mcs/errors/cs0178.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/mcs/errors/cs0178.cs b/mcs/errors/cs0178.cs
deleted file mode 100644
index 47be8ec08a7..00000000000
--- a/mcs/errors/cs0178.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-// cs0178.cs :
-// Line :
-
-using System;
-
-public class Blah {
-
- public static void Main ()
- {
- int [,] i = new int [4,2] { 0, 1, 2, 3, 4, 5 };
- }
-}