2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0159-6.cs
bloba9bf90c350d1c2896a21ad9aa3446129c1057cfc
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 while (i != 9) {
11 throw new System.Exception ("huh?");