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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs1961-15.cs
blob
7a0b81be5812965bbeb1f9b03877ae4ebe8dc295
1
// CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2
// Line: 9
3
// Compiler options: -langversion:future
4
5
interface
I
<
in
T
>
6
{
7
}
8
9
delegate
I
<
U
[]>
D
<
out
U
> ();