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/bug7.cs')
-rwxr-xr-xmcs/errors/bug7.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/mcs/errors/bug7.cs b/mcs/errors/bug7.cs
deleted file mode 100755
index fcd35bc6cdb..00000000000
--- a/mcs/errors/bug7.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-public enum X :byte {
- a, b
-}
-
-public class Y {
-
- const X myconst = X.a;
-
- static void Main ()
- {
- }
-}
-