for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0157-2.cs
blobbbd1adea0385411d0c57e0d005d9fb937b39a558
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 break;