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
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs0115-7.cs
blob
78e05d552b2d67d0825502a52e2c90c822ac353d
1
// CS0115: `C.P' is marked as an override but no accessible `set' accessor found to override
2
// Line: 11
3
4
abstract class
B
5
{
6
public virtual int
P
{
7
get
;
8
private set
;
9
}
10
}
11
12
class
C
:
B
13
{
14
public override int
P
{
15
get
{ return 5; }
16
set
{ }
17
}
18
}