This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0067.cs
1 // cs0067.cs: The event is never used.
2 // Line: 11
3
4 using System;
5
6 class ErrorCS0067 {
7         public delegate void FooHandler ();
8 }
9
10 class Foo {
11         public event ErrorCS0067.FooHandler OnFoo;
12         
13         public static void Main () {
14         }
15 }
16