2008-01-18 Marek Safar <marek.safar@gmail.com>
authorMarek Safar <marek.safar@gmail.com>
Fri, 18 Jan 2008 16:04:47 +0000 (16:04 -0000)
committerMarek Safar <marek.safar@gmail.com>
Fri, 18 Jan 2008 16:04:47 +0000 (16:04 -0000)
A test for bug #353526

svn path=/trunk/mcs/; revision=93270

mcs/tests/gtest-363.cs [new file with mode: 0644]

diff --git a/mcs/tests/gtest-363.cs b/mcs/tests/gtest-363.cs
new file mode 100644 (file)
index 0000000..243a65b
--- /dev/null
@@ -0,0 +1,14 @@
+public class Test
+{
+       public static void InsertAt<T> (T[] array, int index, params T[] items)
+       {
+       }
+       
+       public static void Main()
+       {
+               int[] x = new int[] {1, 2};
+               int[] y = new int[] {3, 4};
+               InsertAt(x, 0, y);
+       }
+}
+