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: 139fa9a9a73ede8a9a69708a73b1f814511f4623 (plain)
1
2
3
4
5
6
7
8
// cs0153.cs: A goto case is only valid inside a switch statement
// Line:
class X {
	void Main ()
	{
		goto default;
	}
}