[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-partial-28.cs
1 partial class A
2 {
3 }
4
5 public class TestCase : A
6 {       
7         public static void Main ()
8         {
9         }
10 }
11
12 public partial class A
13 {
14 }