[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0071.cs
1 // CS0071: `ErrorCS0071.IFoo.OnFoo': An explicit interface implementation of an event must use property syntax
2 // Line: 13
3
4 using System;
5
6 public delegate void Foo (object source);
7
8 interface IFoo {
9         event Foo OnFoo;
10 }
11         
12 class ErrorCS0071 : IFoo {
13         event Foo IFoo.OnFoo;
14 }
15