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

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

class C
{
	public static int Main ()
	{
		var a = new A<string>();
		if (a ["s"] != 2)
			return 1;
		
		return 0;
	}
}