public void OnlyAppliesToNullableTargetTypes()
 {
     Assert.That(ImplicitNullableValueBinding.TryBind(typeof(int?), typeof(int)), Is.Null);
 }
 protected override DuckValueBindingOption TryBind(Type fromType, Type toType)
 {
     return(ImplicitNullableValueBinding.TryBind(fromType, toType));
 }