Merge pull request #4816 from BrzVlad/fix-remoting-exception
[mono.git] / mcs / tests / gtest-363.cs
1 public class Test
2 {
3         public static void InsertAt<T> (T[] array, int index, params T[] items)
4         {
5         }
6         
7         public static void Main()
8         {
9                 int[] x = new int[] {1, 2};
10                 int[] y = new int[] {3, 4};
11                 InsertAt(x, 0, y);
12         }
13 }
14