blob: 5f5a545d58a177fb2ffc3c398fd2d89e358e8a1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// CS0109: The member `DerivedClass.get_Value()' does not hide an inherited member. The new keyword is not required
// Line: 14
// Compiler options: -warnaserror -warn:4
class BaseClass {
protected virtual int Value {
get {
return 0;
}
set { }
}
}
abstract class DerivedClass: BaseClass {
protected new int get_Value () {
return 1;
}
}
class ErrorClass: DerivedClass {
protected override int Value {
get {
return 0;
}
set { }
}
static void Main () {}
}
|