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

gtest-552.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3a2a9f2f55914e4c9fc967974f5e698d8933a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Compiler options: -r:gtest-552-lib.dll

class A : G<A>.GPD
{
}

class B : H<int>
{
	public class MM : M<MM>
	{
	}
}

public class Test
{
	public static int Main ()
	{
		var a = new A ();
		a.GT = new A ();
		a.GT.Foo ();
		
		new B.N<B, B.MM> ();
		return 0;
	}
}