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
/
cs0442.cs
blob
78c9ce072324f8a86889e6df7625e9882926ed02
1
// CS0442: `C.Prop.get': abstract properties cannot have private accessors
2
// Line: 7
3
4
abstract class
C
{
5
protected abstract int
Prop
6
{
7
private get
;
8
set
;
9
}
10
}
11