overflow bug has been fixed in net_4_0
[mcs.git] / errors / dcs1502.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);