[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0102-10.cs
blob2d2a62a21de75cf7074b9d5ee2a0897b7487e993
1 // CS0102: The type `SampleClass' already contains a definition for `add_XX'
2 // Line: 13
4 public class SampleClass {
5 public delegate void MyEvent ();
6 public event MyEvent XX {
7 add { }
8 remove { }
11 bool add_XX;