cleol
[mcs.git] / errors / cs0067-2.cs
blob7a2a83194c0de5d199659d42ebd72c063d3b5453
1 // CS0067: The event `Foo.OnFoo' is never used
2 // Line: 12
3 // Compiler options: -warnaserror -warn:3
5 using System;
7 class Foo
9 public event FooHandler OnFoo;
10 public delegate void FooHandler ();
12 public static void Main ()