1 // CS0109: The member `DerivedClass.get_Value()' does not hide an inherited member. The new keyword is not required
3 // Compiler options: -warnaserror -warn:4
6 protected virtual int Value
{
14 abstract class DerivedClass
: BaseClass
{
15 protected new int get_Value () {
21 class ErrorClass
: DerivedClass
{
22 protected override int Value
{
29 static void Main () {}