2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0157-2.cs
blobbb1b9afef0776eba2afc5d85267b0736c297559b
1 // cs0157-2.cs: Control cannot leave the body of a finally clause
2 // Line: 11
4 class T {
5 static void Main ()
7 while (true) {
8 try {
9 System.Console.WriteLine ("trying");
10 } finally {
11 break;