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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0455-2.cs
blob
5bbf56f2bea9f7ab0e9055824ff57539dea5671b
1
// CS0455: Type parameter `V' inherits conflicting constraints `B' and `A'
2
// Line: 13
3
4
class
A
5
{ }
6
7
class
B
8
{ }
9
10
class
Foo
<
T
,
U
,
V
>
11
where T
:
A
12
where U
:
B
13
where V
:
U
,
T
14
{
15
}