// cs0157-4.cs: Control can not leave the body of a finally clause // Line: 11 class T { static void Main () { while (true) { try { System.Console.WriteLine ("trying"); } finally { goto foo; } foo : ; } } }