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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0108-14.cs
blob
c37ee28d2fda792bf8aea1c99c236bc8e2464295
1
// CS0108: `B.D' hides inherited member `A.D'. Use the new keyword if hiding was intended
2
// Line: 15
3
// Compiler options: -warnaserror -warn:2
4
5
public class
B
:
A
6
{
7
public delegate void
D
();
8
}
9
10
public class
A
11
{
12
public int
D
;
13
}