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

cs0455.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e957adff45d0e65bff6d4caad0103b459477ec70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
// Line: 11

class Test
{ }

class World
{ }

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