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