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

gcs0146.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c64ef6e73222595ccd0b59ea24645e333fc9fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// gcs0146.cs: Circular base class dependency involving `B<T>' and `A<T>'
// Line: 8

class A<T> : B<int>
{
}

class B<T> : A<float>
{ }

class X
{
	static void Main ()
	{ }
}