Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0159-3.cs
1 // CS0159: The label `case null:' could not be found within the scope of the goto statement
2 // Line: 1
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