2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0305-5.cs
blob2d572cf73cbff9abc209fdf0ca33da8a010bd8a0
1 // CS0305: Using the generic method `C.Test<T,Y>(C.Func<T>)' requires `2' type argument(s)
2 // Line: 14
4 public class C
6 public delegate int Func<T> (T t);
8 public static void Test<T, Y> (Func<T> f)
12 public static void Main ()
14 Test<int> (delegate (int i) { return i; });