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

cs0139.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11eb5d7f750999385b23e07d27c501ff2e294383 (plain)
1
2
3
4
5
6
7
8
// cs0139.cs: No loop to exit to in continue or break.
// Line: 6
class X {
	void A ()
	{
		continue;
	}
}