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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0108-9.cs
blob
36b416a7daaded5d6a8b3f31e61814409f55c352
1
// cs0108-9.cs: `Outer.Inner' hides inherited member `Base.Inner'. Use the new keyword if hiding was intended
2
// Line: 13
3
// Compiler options: -warnaserror -warn:2
4
5
public class
Base
6
{
7
public int
Inner { set { }
}
8
}
9
10
class
Outer
:
Base
11
{
12
public void
M
() {}
13
14
public class
Inner
15
{
16
}
17
}