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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0108-18.cs
blob
51401f6d0d7fd4a6a19b9a976d49fc0c1f184bc2
1
// CS0108: `IB.Foo(int)' hides inherited member `IA.Foo'. Use the new keyword if hiding was intended
2
// Line: 13
3
// Compiler options: -warnaserror
4
5
interface
IA
6
{
7
bool
Foo { get; }
8
}
9
10
interface
IB
:
IA
11
{
12
new void
Foo
();
13
void
Foo
(
int
a
);
14
}