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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0695-5.cs
blob
3b962628625b8b33c30fa40a5e040daa727b8712
1
// CS0695: `C<T1,T2>' cannot implement both `IA<T1>' and `IB<IA<T2>>' because they may unify for some type parameter substitutions
2
// Line: 12
3
4
interface
IA
<
T
>
5
{
6
}
7
8
interface
IB
<
T
> :
IA
<
T
>
9
{
10
}
11
12
class
C
<
T1
,
T2
> :
IA
<
T1
>,
IB
<
IA
<
T2
>>
13
{
14
}