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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs8080.cs
blob
001792cee53248ef040b3da05bf063c12fc27c0c
1
// CS8080: `C.P': Auto-implemented properties must override all accessors of the overridden property
2
// Line: 11
3
4
abstract class
B
5
{
6
public virtual int
P { get; private set; }
7
}
8
9
class
C
:
B
10
{
11
public override int
P { get; }
12
}