repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
resync
[mcs.git]
/
errors
/
cs0442.cs
blob
3b325893820855ceed3238f0dc76254321812dfc
1
// cs0442.cs: `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