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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs8341.cs
blob
c78406345fe10aeabc2a67e25567741e42fc107e
1
// CS8341: Auto-implemented instance property `S.field' in readonly structs must be readonly
2
// Line: 6
3
// Compiler options: -langversion:latest
4
5
readonly struct
S
6
{
7
int
field { get; set; }
8
}