2006-08-30 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / errors / cs0139-5.cs
1 // cs0139-5.cs: No enclosing loop out of which to break or continue
2 // Line: 8
3
4 class Foo {
5         static void Main ()
6         {
7                 try {
8                         continue;
9                 } finally {
10                         throw new System.Exception ();
11                 }
12         }
13 }