Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0067-3.cs
1 // CS0067: The event `S.EH' is never used
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
4
5 using System;
6
7 static class S
8 {
9         public static event EventHandler EH;
10 }