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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1961-30.cs
blob
71d58d3b8335c58a2451e915b9ecd3953a73daa5
1
// CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2
// Line: 6
3
4
interface
IContravariant
<
in
T
>
{ }
5
6
delegate
IContravariant
<
U
[]>
D
<
out
U
> ();