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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs1961-31.cs
blob
d9de845de0fa07ad2583b4d6f9bc401879f36bcd
1
// CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>'
2
// Line: 8
3
4
interface
A
<
T
>
5
{
6
}
7
8
interface
B
<
out
T
> :
A
<
T
>
9
{
10
}