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: 34d36ab50162e35ca79332b60c1ba3e4057e5954 (plain)
1
2
3
4
5
6
7
8
// CS0139: No enclosing loop out of which to break or continue
// Line: 6
class X {
	void A ()
	{
		continue;
	}
}