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-20.cs
blob
9047b86337c9744bb01e0f05b1b1dbbbfdc92cf9
1
// CS0108: `B.Adapter' hides inherited member `A.Adapter'. Use the new keyword if hiding was intended
2
// Line: 14
3
// Compiler options: -warnaserror -warn:2
4
5
class
A
6
{
7
public abstract class
Adapter
8
{
9
}
10
}
11
12
class
B
:
A
13
{
14
public int
Adapter { get; set; }
15
}