summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1503-3.cs
blob: 5f8f1a327e5c54f0e54e940cfaaa6be3866c5af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1503: Argument `#1' cannot convert `int[]' expression to type `int'
// Line: 12

class C
{
	static void Foo (params int[] i)
	{
	}
	
	public static void Main ()
	{
		Foo (new int[1], 1);
	}
}