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

cs0454.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 386c875929d4f84d3313c529944fb959a23f9a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0454: Circular constraint dependency involving `T' and `U'
// Line: 7
using System;

class Foo<T,U>
	where T : U
	where U : T
{ }

class X
{
	static void Main ()
	{ }
}