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-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1961-36.cs
blob
2ba44a98dc41412c6826b386ef2478bd55fcd999
1
// CS1961: The covariant type parameter `T' must be invariantly valid on `A<T>.B(out T)'
2
// Line: 7
3
// Compiler options: -langversion:future
4
5
interface
A
<
out
T
>
6
{
7
void
B
(
out
T t
);
8
}