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

cs0139-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e8b25b6d8d3635925faf2f6829d78bba5f8af66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0139-7.cs: No enclosing loop out of which to break or continue
// Line: 9

class Foo {
	static void Main ()
	{
		try {}
		finally {
			continue;
		}
	}
}