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: c102bfa4672b08a84a36f166543078934651038f (plain)
1
2
3
4
5
6
7
8
// cs0153.cs: goto default only allowed in switch statement
// Line:
class X {
	void Main ()
	{
		goto default;
	}
}