2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0072-2.cs
blobf4fa39d60e9c681cdac5cc8741c0c1779dc8cb9d
1 // CS0072: `Child.OnFoo': cannot override because `ErrorCS0072.OnFoo()' is not an event
2 // Line: 16
4 using System;
6 class ErrorCS0072 {
7 public delegate void FooHandler ();
8 protected void OnFoo () {}
11 class Child : ErrorCS0072 {
12 // We are trying to override a method with an event.
13 protected override event FooHandler OnFoo;
15 public static void Main () {