Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0159-4.cs
1 // CS0159: The label `skip:' could not be found within the scope of the goto statement
2 // Line: 9
3
4 class Foo {
5         static void Main ()
6         {
7                 try {}
8                 finally {
9                         goto skip;
10                 }
11         }
12 }
13