[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs1503-12.cs
1 // CS1503: Argument `#1' cannot convert `bool' expression to type `int[]'
2 // Line: 13
3
4 public class X
5 {
6         public static void Test (params int[] a)
7         {
8         }
9
10         public static void Main()
11         {
12                 int i;
13                 Test (true);
14         }
15 }