[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0074.cs
1 // CS0074: `ErrorCS0074.OnFoo': abstract event cannot have an initializer
2 // Line: 8
3
4 using System;
5
6 abstract class ErrorCS0074 {
7         public delegate void Handler ();
8         public abstract event Handler OnFoo = null;
9         public static void Main () {
10         }
11 }
12