[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0102-10.cs
1 // CS0102: The type `SampleClass' already contains a definition for `add_XX'
2 // Line: 13
3
4 public class SampleClass {
5         public delegate void MyEvent ();
6         public event MyEvent XX {
7                 add { }
8                 remove { }
9         }
10         
11         bool add_XX;
12 }