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

gtest-309.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83e7b8b30bb55cd60e13dc59a3095df961b38ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Test<A,B>
{
	public void Foo<V,W> (Test<A,W> x, Test<V,B> y)
	{ }
}

class X
{
	public static void Main ()
	{
		Test<float,int> test = new Test<float,int> ();
		test.Foo (test, test);
	}
}