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

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

public class X
{
	public static void Test (Bar<int,string> bar)
	{
		bar.Hello ("Test");
		bar.Test (7, "Hello");
	}

	public static void Main ()
	{ }
}