1 // CS0121: The call is ambiguous between the following methods or properties: `Test.Foo<int,int>(int, System.Linq.Expressions.Expression<System.Func<int,int>>)' and `Test.Foo<int,int>(int, System.Func<int,int>)'
6 using System
.Linq
.Expressions
;
10 static int Foo
<T
, R
> (T t
, Expression
<Func
<T
, R
>> e
)
15 static int Foo
<T
, R
> (T t
, Func
<T
, R
> e
)