"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / tests / gtest-627.cs
blob7ac0117862a5be219ea7d076af0d50ca2ec8627d
1 using System;
3 class X
5 public static U Foo<U> (double? value, Func<double?, U> f, int dv = 0)
7 throw new ApplicationException ();
10 public static U Foo<T, U> (T? source, Func<T, U> f) where T : struct
12 return default (U);
15 static void Main (string[] args)
17 Foo (default (double?), v => v / 100);