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: f357932c8103e1e6abca160893d568246906292b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0146: Class definition is circular: `A`1'
// Line: 3
class A<T> : B<int>
{
}

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

class X
{
	static void Main ()
	{ }
}