2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0411-9.cs
blob063036e02b268509a356108f11b7d2401bb55608
1 // CS0411: The type arguments for method `Test.Foo<A>(D<A>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 15
4 delegate void D<T> (T t);
6 class Test
8 public static D<A> Foo<A> (D<A> a)
10 return null;
13 public static void Main ()
15 Foo (delegate {});