summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0067-3.cs
blob: 8f825084d0107c317e9b75d26a4afbbcaf82d79a (plain)
1
2
3
4
5
6
7
8
9
10
// CS0067: The event `S.EH' is never used
// Line: 9
// Compiler options: -warnaserror -warn:3

using System;

static class S
{
	public static event EventHandler EH;
}