repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0455.cs
blob
e957adff45d0e65bff6d4caad0103b459477ec70
1
// CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
2
// Line: 11
3
4
class
Test
5
{ }
6
7
class
World
8
{ }
9
10
class
Foo
<
T
,
U
>
11
where T
:
Test
,
U
12
where U
:
World
13
{ }