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

cs0157.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eef17a84c1ceefc4bba52dd8dc8399209908a291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0157: Control cannot leave the body of a finally clause
// Line: 9

class X {
	void A ()
	{
		try {
		} finally {
			return;
		}
	}
}