2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0159-7.cs
blobe47539a97a15a27469f173dbee516914f91396aa
1 // CS0159: The label `a:' could not be found within the scope of the goto statement
2 // Line: 9
4 class Foo {
5 static void Main ()
7 int i = 9;
8 goto a;
9 do {
11 throw new System.Exception ("huh?");
12 } while (i != 9);