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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0455-6.cs
blob
62b9bd31a29071dd6e3a4a13b35d38e6f29cd45c
1
// CS0455: Type parameter `T3' inherits conflicting constraints `X' and `Y'
2
// Line: 15
3
4
class
X
5
{
6
}
7
8
class
Y
9
{
10
}
11
12
class
C
<
T1
,
T2
,
T3
,
T4
>
13
where T1
:
X
14
where T2
:
T1
15
where T3
:
Y
,
T4
16
where T4
:
T2
17
{
18
}