[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-exmethod-33.cs
1 public class Prop
2 {
3 }
4
5 public interface I
6 {
7         void Foo (int[] i, bool b);
8 }
9
10 internal static class HelperExtensions
11 {
12         public static void Foo (this I from, I to)
13         {
14         }
15 }
16
17 public class C
18 {
19         public I Prop {
20                 get { return null; }
21         }
22         
23         public int[] Loc {
24                 get { return null; }
25         }
26         
27         void Test ()
28         {
29                 Prop.Foo (null);
30         }
31         
32         public static void Main ()
33         {
34         }
35 }