In mcs:
[mono.git] / mcs / errors / cs0159-5.cs
1 // CS0159: No such label `a' in this scope
2 // Line: 8
3
4 class Foo {
5         static void Main ()
6         {
7                 int i = 9;
8                 goto a;
9                 if (i == 9) {
10                 a:
11                         throw new System.Exception ("huh?");
12                 }
13         }
14 }