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

gtest-477.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05b231e6c0f326d66f5bfd2e18ff41fdd4e8d75e (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
26
using System;

class B<T> : A<T>
{
	protected class BNested : ANested
	{
	}
}

class A<T> : AA<T>
{
}

class AA<T>
{
	protected class ANested
	{
	}
}

class M
{
	public static void Main ()
	{
	}
}