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

gtest-235.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a3ea01098add22ed2551d585862f0815de1f38c (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: /r:gtest-235-lib.dll
using System;

class GettingStarted
{
	public static void Main ()
	{
		MyList<string> names = new MyList<string> ();
		names.AddAll<string> ();
	}
}