repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1961-30.cs
blob
609b6fbd7fea9507b40cd9fddc55bc39eeb58098
1
// CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2
// Line: 7
3
// Compiler options: -langversion:future
4
5
interface
IContravariant
<
in
T
>
{ }
6
7
delegate
IContravariant
<
U
[]>
D
<
out
U
> ();