1 // CS0121: The call is ambiguous between the following methods or properties: `Program.Foo(System.Func<string,dynamic>)' and `Program.Foo(System.Func<object>)'
6 public static class Program
8 public static void Main ()
13 public static dynamic Bar (string s1
)
18 public static object Bar () {
22 public static void Foo (Func
<string, dynamic> input
)
26 public static void Foo (Func
<object> input
)