[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0164.cs
1 // CS0164: This label has not been referenced
2 // Line: 7
3 // Compiler options: -warnaserror -warn:2
4
5 class X {
6         static void Main () {
7                 a:
8                         return;
9         }
10 }