2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0411-3.cs
blob04c2de60ba9497f06395cdb2dedada9d7794ed69
1 // CS0411: The type arguments for method `C.Foo<T>(T)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 12
4 class C
6 static void X ()
10 static void Foo<T> (T t)
12 Foo(X ());