repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0109-2.cs
blob
07d7b37fef86ef5ecfacb7103f144b696ba8f949
1
// cs0109-2.cs: The member `BaseClass.Location' does not hide an inherited member. The new keyword is not required
2
// Line: 6
3
// Compiler options: -warnaserror -warn:4
4
5
class
BaseClass
{
6
public new int
Location { set { }
}
7
}