2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0157-4.cs
blobde73caca760425382da3982c58d7929d97b4c969
1 // cs0157-4.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 goto foo;
13 foo :