[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0067-2.cs
1 // CS0067: The event `Foo.OnFoo' is never used
2 // Line: 12
3 // Compiler options: -warnaserror -warn:3
4
5 using System;
6
7 class Foo
8 {
9         public event FooHandler OnFoo;
10         public delegate void FooHandler ();
11
12         public static void Main ()
13         {
14         }
15 }
16