[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0074.cs
1 // CS0074: `ErrorCS0074.OnFoo': abstract event cannot have an initializer
2 // Line: 8
3
4 using System;
5
6 abstract class ErrorCS0074 {
7         public delegate void Handler ();
8         public abstract event Handler OnFoo = null;
9         public static void Main () {
10         }
11 }
12