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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0108-9.cs
blob
beb4ead90bd9b81f321aa35d047dcdf81c7c4ef9
1
// CS0108: `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
}