In ilasm/codegen:
[mcs.git] / errors / gcs1503.cs
bloba458f1d7625955f619b50c485f97bc2d0d613b75
1 // CS1503: Argument 1: Cannot convert type `bool' to `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);