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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0109-4.cs
blob
7a34c6dee968a29b8adcb7acdac60e1703c81159
1
// CS0109: The member `Derived.this[string]' does not hide an inherited member. The new keyword is not required
2
// Line: 10
3
// Compiler options: -warnaserror -warn:4
4
5
class
Base
{
6
public bool this
[
int
arg
]
{ set {}
}
7
}
8
9
class
Derived
:
Base
{
10
public new bool this
[
string
arg
]
{ set {}
}
11
}