[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0153-2.cs
1 // CS0153: A goto case is only valid inside a switch statement
2 // Line: 7
3
4 class X {
5         void Main ()
6         {
7                 goto case 5;
8         }
9 }