summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1502-15.cs
blob: dd9d49d59b1e3c3c8ab87b2d667a248594f1dbc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS1502: The best overloaded method match for `C.TestCall(int, string)' has some invalid arguments
// Line: 13

class C
{
	static void TestCall (int i, string s)
	{
	}
	
	public static void Main ()
	{
		dynamic d = 0;
		TestCall (d, 1);
	}
}