remove debug writelines
[mcs.git] / errors / dcs0411.cs
blob476a388ce462f512e92525171d250c0e24c0021d
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
4 class C
6 static void TestCall<T> (int i)
10 public static void Main ()
12 dynamic d = 0;
13 TestCall (d);