[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-etree-24.cs
blob5abf474278e1e2181a33a0dc0d3465f8481b2c0a
1 using System;
2 using System.Linq.Expressions;
4 public static class NotifyingProperty
6 public static void CreateDependent<TValue> (
7 Expression<Func<TValue>> property,
8 Func<object> notifier,
9 params Expression<Func<object>>[] dependents)
14 public class NotifyingPropertyTest
16 public void CreateDependent_NotifierNull ()
18 int v = 0;
19 NotifyingProperty.CreateDependent (() => v, null);
22 public void CreateDependent_DependentsNull ()
24 Expression<Func<object>>[] dependents = null;
25 int v = 0;
26 NotifyingProperty.CreateDependent (() => v, () => null, dependents);
29 public static void Main ()