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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0695.cs
blob
d181402c6930fc468a69692fa9a24019f678e7b0
1
// CS0695: `A<X,Y>' cannot implement both `I<X>' and `I<Y>' 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
{ }