Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0411-18.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: 10
3
4 using System;
5
6 class C
7 {
8         static void Main ()
9         {
10                 Foo (new TypedReference ());
11         }
12
13         static void Foo<T> (T arg)
14         {
15         }
16 }