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

gtest-356.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 853fb060da99b5cf989b3b08059ce952e0e1a855 (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
class A<T>
{
	void Foo (B<T>.E arg)
	{
	}
}

class B<U> : B
{
}

class B
{
	public class E
	{
	}
}

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