[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-etree-30.cs
1 using System;
2 using System.Linq.Expressions;
3
4 public sealed class C
5 {
6         public C ()
7         {
8         }
9
10         public C (Action<object, object> tappedCallback)
11         {
12         }
13
14         public readonly string TappedCallbackProperty = Create<C, Action<object, object>> (o => o.TappedCallback);
15
16         public Action<object, object> TappedCallback {
17                 get;
18                 set;
19         }
20
21         public static string Create<T1, T2> (Expression<Func<T1, T2>> getter)
22         {
23                 return null;
24         }
25
26         public static void Main ()
27         {
28                 new C (null);
29         }
30 }