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

gtest-034.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81aa51ad9c6b512617be88575b3185cb86cb500a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Foo<T>
{ }

class Stack<T>
{ }

//
// We may use a constructed type `Stack<T>' instead of
// just a type parameter.
//

class Bar<T> : Foo<Stack<T>>
{ }

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