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
tag rc1
[mcs.git]
/
errors
/
cs0109-5.cs
blob
568357c68eefba5aaeb9c2e8737cb44f1f505b3d
1
// cs0109.cs: The member `Derived.Test()' does not hide an inherited member. The new keyword is not required
2
// Line: 10
3
// Compiler options: -warnaserror -warn:4
4
5
class
Base
{
6
void
Test
(
bool
arg
) {}
7
}
8
9
class
Derived
:
Base
{
10
new void
Test
() {}
11
}