summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0153-2.cs
blob: b7672fb4a9a183823ddc85c8cb9538a3ea15bddd (plain)
1
2
3
4
5
6
7
8
9
// CS0153: A goto case is only valid inside a switch statement
// Line: 7

class X {
	void Main ()
	{
		goto case 5;
	}
}