w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0308-8.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);