repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0507-5.cs
blob
8ceeda60fe3e57e707b013a5a9b9fdfd777a2b34
1
// CS0507: `Bar.X()': cannot change access modifiers when overriding `protected internal' inherited member `Foo.X()'
2
// Line: 13
3
4
class
Foo
5
{
6
protected internal virtual void
X
()
7
{
8
}
9
}
10
11
class
Bar
:
Foo
12
{
13
protected override void
X
()
14
{
15
}
16
}