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
/
cs0282.cs
blob
0316154e4b40bf0647ac624102dd030c53bf8092
1
// CS0282: struct instance field `S.y' found in different declaration from instance field `S.x'
2
// Line: 8
3
// Compiler options: -warn:4 -warnaserror
4
5
partial struct
S
{
6
int
x
;
7
}
8
partial struct
S
{
9
int
y
;
10
static void
Main
() {}
11
}