summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-235.cs
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> ();
	}
}