// CS0305: Using the generic method `C.Test(C.Func)' requires `2' type argument(s) // Line: 14 public class C { public delegate int Func (T t); public static void Test (Func f) { } public static void Main () { Test (delegate (int i) { return i; }); } }