[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }