New test.
[mono.git] / mcs / errors / cs0159-3.cs
1 // cs0159-3.cs: No such label `case null:' within the scope of the goto statement
2 // Line: 10
3
4 class y {
5         static void Main ()
6         {
7                 string x = null;
8
9                 switch (x){
10                         case "": goto case null;
11                 }
12         }
13 }
14