avoid using a custom sources file for the net_2_1_raw profile
[mcs.git] / errors / cs0157-3.cs
bloba8b183105ce2969b37dbd8e80b4ef4318c0f6279
1 // cs0157-3.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 continue;