summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1503-10.cs
blob: 7d2afbecb7ff5e15ca0ed4669825e47ed856949b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS1503: Argument `#1' cannot convert `System.RuntimeArgumentHandle' expression to type `__arglist'
// Line: 10

using System;

class C
{
	void Foo (__arglist)
	{
		InstanceArgList (__arglist);
	}
	
	int InstanceArgList (__arglist)
	{
		return 54;
	}
}