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

public class A
{
	public static void Main ()
	{
		int i = 9;
		goto a;
		switch (i) {
		case 9:
		a:
			break;
		}
	}
}