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

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