New test.
[mono.git] / mcs / errors / cs0159-4.cs
1 // cs0159-4.cs: No such label `skip' in this scope
2 // Line: 9
3
4 class Foo {
5         static void Main ()
6         {
7                 try {}
8                 finally {
9                         goto skip;
10                 }
11         }
12 }
13