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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0115-4.cs
blob
906f82061d5fed425e207e8e8c854415e556d901
1
// CS0115: `DerivedClass.get_Value()' is marked as an override but no suitable method found to override
2
// Line: 13
3
4
class
BaseClass
{
5
protected virtual int
Value
{
6
get
{
7
return
0
;
8
}
9
}
10
}
11
12
class
DerivedClass
:
BaseClass
{
13
protected override int
get_Value
() {
14
return
1
;
15
}
16
17
static void
Main
() {}
18
}