[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs1502-15.cs
blobdd9d49d59b1e3c3c8ab87b2d667a248594f1dbc4
1 // CS1502: The best overloaded method match for `C.TestCall(int, string)' has some invalid arguments
2 // Line: 13
4 class C
6 static void TestCall (int i, string s)
10 public static void Main ()
12 dynamic d = 0;
13 TestCall (d, 1);