[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0159-8.cs
blob3d02ac48dd9f87dc6a203ec064faed27b8923de4
1 // CS0159: The label `a:' could not be found within the scope of the goto statement
2 // Line: 9
4 public class A
6 public static void Main ()
8 int i = 9;
9 goto a;
10 switch (i) {
11 case 9:
13 break;