2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1503-3.cs
blob5f8f1a327e5c54f0e54e940cfaaa6be3866c5af4
1 // CS1503: Argument `#1' cannot convert `int[]' expression to type `int'
2 // Line: 12
4 class C
6 static void Foo (params int[] i)
10 public static void Main ()
12 Foo (new int[1], 1);