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/cs0159-2.cs')
-rwxr-xr-xmcs/errors/cs0159-2.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/errors/cs0159-2.cs b/mcs/errors/cs0159-2.cs
deleted file mode 100755
index aeb30d78a35..00000000000
--- a/mcs/errors/cs0159-2.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-// cs0159-2.cs: No such case 20
-
-class y {
- enum X { A = 1, B = 1, C = 1 }
-
- static void Main ()
- {
- int x = 1;
-
- switch (x){
- case 1: break;
- case 2: goto case 20;
- }
- }
-}
-