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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1961-40.cs
blob
e31c1defedd703e88709ead7451655fc06334e46
1
// CS1961: The contravariant type parameter `T' must be invariantly valid on `InterfaceContravariat<T>.Prop'
2
// Line: 4
3
4
interface
InterfaceContravariat
<
in
T
>
5
{
6
T Prop { set; get; }
7
}