summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1501-10.cs
blob: 6969803066d5b8b75bfc05170b14013d6d639373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS1501: No overload for method `TestCall' takes `1' arguments
// Line: 13

class C
{
	static void TestCall (byte b, int a)
	{
	}

	public static void Main ()
	{
		dynamic d = 0;
		TestCall (d);
	}
}