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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0108.cs
blob
18201bd0c49e0caf161c7448d9cc452e013148bf
1
// CS0108: `Derived.F()' hides inherited member `Base.F()'. Use the new keyword if hiding was intended
2
// Line:
3
// Compiler options: -warnaserror -warn:2
4
5
class
Base
{
6
public void
F
() {}
7
}
8
9
class
Derived
:
Base
{
10
void
F
() {}
11
}