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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1961-23.cs
blob
a828d310c441b9d436715e8ba0c22e7d06d0b207
1
// CS1923: The covariant type parameter `T' must be invariantly valid on `B<T>.C(A<A<T>>)'
2
// Line: 8
3
4
interface
A
<
T
>
5
{
6
}
7
8
interface
B
<
out
T
>
9
{
10
void
C
(
A
<
A
<
T
>>
a
);
11
}