2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0159-3.cs
blob63499fc6ce5ca6e71372f1968e753e453153159e
1 // CS0159: The label `case null:' could not be found within the scope of the goto statement
2 // Line: 1
4 class y {
5 static void Main ()
7 string x = null;
9 switch (x){
10 case "": goto case null;