1 // CS0411: The type arguments for method `M.Foo<T>(System.Func<T>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
8 static void Foo
<T
> (Func
<T
> t
)
12 public static void Main ()
14 Foo (delegate { throw new Exception("foo"); }
);