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