Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-363.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 243a65be720448ca0d312d8f184b45478647b368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
	}
}