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

public class X
{
	public static void Test (params int[] a)
	{
	}

	public static void Main()
	{
		int i;
		Test (true);
	}
}