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
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs0695-7.cs
blob
69321c0c6a433f657bf639bd45dd1b36d34bbf97
1
// CS0695: `C<T,U>' cannot implement both `A<T>.IB' and `A<U>.IB' because they may unify for some type parameter substitutions
2
// Line: 11
3
4
class
A
<
T
>
5
{
6
public interface
IB
7
{
8
}
9
}
10
11
class
C
<
T
,
U
> :
A
<
T
>.
IB
,
A
<
U
>.
IB
12
{
13
}