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

gtest-318.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b443fff1a33b846cf03cf1a87b98009e5a4389dc (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
// Bug #77963
public class Foo<K>
{
}

public class Bar<Q> : Goo<Q>
{
        public class Baz
        {
        }
}

public class Goo<Q> : Foo<Bar<Q>.Baz>
{
}

class X
{
	public static void Main ()
	{
		Bar<int> bar = new Bar<int> ();
		System.Console.WriteLine (bar);
	}
}