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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1961-15.cs
blob
3d0cb726caa763f58e84d02c8a587c29c553f042
1
// CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2
// Line: 8
3
4
interface
I
<
in
T
>
5
{
6
}
7
8
delegate
I
<
U
[]>
D
<
out
U
> ();