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
tag rc1
[mcs.git]
/
errors
/
gcs1961-37.cs
blob
af33381d0e8e40e50acdea8f65f67cd58e854018
1
// CS1961: The covariant type parameter `T' must be invariantly valid on `A<T>.B(ref T)'
2
// Line: 5
3
// Compiler options: -langversion:future
4
5
interface
A
<
out
T
>
6
{
7
void
B
(
ref
T t
);
8
}