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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0507.cs
blob
9c5ca4eba8bfdb089d502de2714a09af45a07b46
1
// CS0507: `DerivedClass.Show()': cannot change access modifiers when overriding `protected' inherited member `BaseClass.Show()'
2
// Line: 9
3
4
class
BaseClass
{
5
protected virtual void
Show
() {}
6
}
7
8
class
DerivedClass
:
BaseClass
{
9
public override void
Show
() {}
10
}
11