[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0533-2.cs
1 // CS0533: `B.MyEvent' hides inherited abstract member `A.MyEvent'
2 // Line: 11
3
4 using System;
5
6 abstract class A {
7         public abstract event EventHandler MyEvent;
8 }
9
10 class B : A {
11         public new event EventHandler MyEvent;
12 }