[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-etree-30.cs
blob0c8ec7e6bd44cd98b26ea781056295ed822abd08
1 using System;
2 using System.Linq.Expressions;
4 public sealed class C
6 public C ()
10 public C (Action<object, object> tappedCallback)
14 public readonly string TappedCallbackProperty = Create<C, Action<object, object>> (o => o.TappedCallback);
16 public Action<object, object> TappedCallback {
17 get;
18 set;
21 public static string Create<T1, T2> (Expression<Func<T1, T2>> getter)
23 return null;
26 public static void Main ()
28 new C (null);