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-2.cs
blob
239b702ac492429cbaa571e61b2dd7d5271dc8ba
1
// CS0108: `Derived.Test(bool)' hides inherited member `BaseInterface.Test(bool)'. Use the new keyword if hiding was intended
2
// Line: 9
3
// Compiler options: -warnaserror -warn:2 -t:library
4
5
interface
BaseInterface
{
6
void
Test
(
bool
arg
);
7
}
8
9
interface
Derived
:
BaseInterface
{
10
void
Test
(
bool
arg
);
11
}