summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0157-2.cs
blob: bbd1adea0385411d0c57e0d005d9fb937b39a558 (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 {
				break;
			}
		}
	}
}