repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make csproj target work again
[mcs.git]
/
errors
/
gcs0455.cs
blob
44aefafdc4aec7f3c2e05c5a2a7e6d6ba5f53225
1
// CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
2
// Line: 13
3
using
System
;
4
5
class
Test
6
{ }
7
8
class
World
9
{ }
10
11
class
Foo
<
T
,
U
>
12
where T
:
Test
,
U
13
where U
:
World
14
{ }
15
16
class
X
17
{
18
static void
Main
()
19
{ }
20
}