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
/
cs8147-2.cs
blob
a4375d2d1a55f30fdd141adeb8ee9e63816e8a92
1
// CS8147: `X.this[int]': property and indexer which return by reference cannot have set accessors
2
// Line: 6
3
4
public class
X
5
{
6
ref string this
[
int
arg
] {
7
set
{
8
9
}
10
get
{
11
12
}
13
}
14
}