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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0109.cs
blob
ec88ff891ae3a900fd713f934178a78aefc950d7
1
// CS0109: 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
;
7
}