Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0139-4.cs
1 // CS0139: No enclosing loop out of which to break or continue
2 // Line: 9
3
4 class Foo {
5         static void Main ()
6         {
7                 try {
8                 } catch {
9                         break;
10                 } finally {
11                         throw new System.Exception ();
12                 }
13         }
14 }