2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs0308.cs
blob0cf7cbd66215c765c81ce5e97c26440dcce2c1cf
1 // CS0308: The non-generic method `C.TestCall(int)' cannot be used with the type arguments
2 // Line: 13
4 class C
6 static void TestCall (int i)
10 public static void Main ()
12 dynamic d = 0;
13 TestCall<int> (d);