summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0067-4.cs
blob: 73558a7e32945cd7d04128c69640c5e664172d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0067: The event `EventTestClass.Elapsed' is never used
// Line: 8
// Compiler options: -warnaserror

using System;

public class EventTestClass : IEventTest
{
	public event EventHandler Elapsed;
}

public interface IEventTest 
{
	event EventHandler Elapsed;
}