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 #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0108-6.cs
blob
e91276f94178c911140f0755bc8a364e4ab52000
1
// CS0108: `Derived.Prop' hides inherited member `Base.Prop'. Use the new keyword if hiding was intended
2
// Line: 14
3
// Compiler options: -warnaserror -warn:2
4
5
class
Base
{
6
public int
Prop
{
7
get
{
8
return
0
;
9
}
10
}
11
}
12
13
class
Derived
:
Base
{
14
public bool
Prop
=
false
;
15
}