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

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

class T {
	static void Main ()
	{
		while (true) {
			try {
				System.Console.WriteLine ("trying");
			} finally {
				continue;
			}
		}
	}
}