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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs1067.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
}