Bump mono-extensions to fix build break (#5677)
[mono.git] / mcs / errors / cs1503-3.cs
1 // CS1503: Argument `#1' cannot convert `int[]' expression to type `int'
2 // Line: 12
3
4 class C
5 {
6         static void Foo (params int[] i)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Foo (new int[1], 1);
13         }
14 }