1 // CS0411: The type arguments for method `Test' cannot be inferred from the usage. Try specifying the type arguments explicitly
5 public delegate void Foo
<T
> (T t
);
9 public void Test
<T
> (Foo
<T
> foo
)
15 x
.Test (delegate (string str
) { }
);