[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-820.cs
1 // Compiler options: -main:C
2
3 using System;
4
5 namespace NS
6 {
7         public class C
8         {
9                 public static void Main ()
10                 {
11                         throw new NotImplementedException ();
12                 }
13         }
14 }
15
16 public class C
17 {
18         public static int Main (string[] a)
19         {
20                 return 0;
21         }
22 }