2010-04-02 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0067.cs
blobf3cd3ca9cac3dbd996aa22f82815850e5247c555
1 // cs0067: The event `Foo.OnFoo' is never used
2 // Line: 12
3 // Compiler options: -warnaserror -warn:4
5 using System;
7 class ErrorCS0067 {
8 public delegate void FooHandler ();
11 class Foo {
12 private event ErrorCS0067.FooHandler OnFoo;
14 public static void Main () {