2005-04-12 Dick Porter <dick@ximian.com>
[mono.git] / mcs / errors / cs0071-2.cs
1 using System;
2
3 public delegate void Foo (object source);
4
5 interface IFoo {
6         event Foo OnFoo;
7 }
8
9 class ErrorCS0071 : IFoo {
10         public event Foo IFoo.OnFoo () { }
11         public static void Main () {
12         }
13 }
14
15
16
17
18
19