blob: 0cf7cbd66215c765c81ce5e97c26440dcce2c1cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS0308: The non-generic method `C.TestCall(int)' cannot be used with the type arguments
// Line: 13
class C
{
static void TestCall (int i)
{
}
public static void Main ()
{
dynamic d = 0;
TestCall<int> (d);
}
}
|