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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs8340-2.cs
blob
9236e9468b887395910445b42d0b280beac4b0b2
1
// CS8340: `S.field': Instance fields in readonly structs must be readonly
2
// Line: 6
3
// Compiler options: -langversion:latest
4
5
readonly partial struct
S
6
{
7
8
}
9
10
partial struct
S
11
{
12
int
field
;
13
}