summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0153.cs
blob: f50f1d55714a0ea597c05fa513429b4decffe2df (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 default;
	}
}