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
/
cs0695-4.cs
blob
fdefb0e591239edf5bfa48c8b4de3037c1719dfe
1
// CS0695: `C<X,Y>' cannot implement both `I<K<Y>>' and `I<X>' because they may unify for some type parameter substitutions
2
// Line: 10
3
4
interface
I
<
X
>
5
{ }
6
7
interface
K
<
X
>
8
{ }
9
10
class
C
<
X
,
Y
> :
I
<
K
<
Y
>>,
I
<
X
>
11
{ }