Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0411-19.cs
1 // CS0411: The type arguments for method `C.TestCall<T>(int)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 13
3
4 class C
5 {
6         static void TestCall<T> (int i)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 dynamic d = 0;
13                 TestCall (d);
14         }
15 }