[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0157-4.cs
blob8f5f4e4af610e7e18799d4b045b250760f4eb7ce
1 // CS0157: 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 goto foo;
13 foo :