[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0161.cs
1 // CS0161: `A.Main()': not all code paths return a value
2 // Line: 6
3
4 class A
5 {
6         public static int Main () 
7         {
8         }
9 }