Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0505-2.cs
blobcf64453d0b5a29882f7c0e540e7e9abb9f06613e
1 // CS0505: `DerivedClass.value()': cannot override because `BaseClass.value' is not a method
2 // Line: 9
4 using System;
6 class BaseClass {
7 protected int value;
10 class DerivedClass: BaseClass {
11 protected override EventHandler value() {}