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: a56dd964da0d578a8e5021474f79702b4f38261e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0157.cs: Control can not leave the body of a finally clause
// Line: 9

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