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
Make csproj target work again
[mcs.git]
/
errors
/
gcs1067.cs
blob
dbe433e7af1032aaa416d48e39d8290e90a0c38b
1
// CS1067: Partial declarations of `I<T>' must have the same type parameter variance modifiers
2
// Line: 8
3
4
partial interface
I
<
in
T
>
5
{
6
}
7
8
partial interface
I
<
out
T
>
9
{
10
}