summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0157-3.cs
blob: b69b92a0e4bb8e01492ccf0ecf6a199f6868d1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0157: 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;
			}
		}
	}
}