[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0158.cs
1 // CS0158: The label `start' shadows another label by the same name in a contained scope
2 // Line: 9
3
4 class ClassMain {
5         public static void Main() {
6                 start:
7                 {
8                         start:  
9                         goto start;
10                 }
11         }
12 }
13