repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0695.cs
blob
51efc8985bb1492fb053f8429e81120bd0f1d4c5
1
// gcs0695.cs: `A<X,Y>' cannot implement both `I<Y>' and `I<X>' because they may unify for some type parameter substitutions
2
// Line: 7
3
4
interface
I
<
X
>
5
{ }
6
7
class
A
<
X
,
Y
> :
I
<
X
>,
I
<
Y
>
8
{ }