Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0153.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
	}
}