Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0067-4.cs
1 // CS0067: The event `EventTestClass.Elapsed' is never used
2 // Line: 8
3 // Compiler options: -warnaserror
4
5 using System;
6
7 public class EventTestClass : IEventTest
8 {
9         public event EventHandler Elapsed;
10 }
11
12 public interface IEventTest 
13 {
14         event EventHandler Elapsed;
15 }