summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0159-6.cs
blob: a9bf90c350d1c2896a21ad9aa3446129c1057cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0159: The label `a:' could not be found within the scope of the goto statement
// Line: 9

class Foo {
	static void Main ()
	{
		int i = 9;
		goto a;
		while (i != 9) {
		a:
			throw new System.Exception ("huh?");
		}
	}
}