Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0411-3.cs
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
3
4 class C
5 {
6         static void X ()
7         {
8         }
9         
10         static void Foo<T> (T t)
11         {
12                 Foo(X ());
13         }
14 }