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
/
cs0506.cs
blob
6bb5c9dbe35406337c0d524ad81c10b83c41901c
1
// CS0506: `DerivedClass.Show()': cannot override inherited member `BaseClass.Show()' because it is not marked virtual, abstract or override
2
// Line: 9
3
4
class
BaseClass
{
5
protected void
Show
() {}
6
}
7
8
class
DerivedClass
:
BaseClass
{
9
protected override void
Show
() {}
10
}
11