2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1503-2.cs
blobcd089df0cd899ee229668f5d85240a0651d1d9e0
1 // CS1503: Argument `#1' cannot convert `bool' expression to type `int[]'
2 // Line: 13
4 public class X
6 public static void Test (params int[] a)
10 public static void Main()
12 int i;
13 Test (true);