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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0109-3.cs
blob
291f314fdaf4ead7ab9b38a145aa1ed436200462
1
// cs0109-3.cs: The member `BaseClass.Val' 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 const bool
Val
=
false
;
7
}