[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0082-8.cs
1 // CS0082: A member `Test.add_XX(Test.MyEvent)' is already reserved
2 // Line: 12
3
4 public class Test
5 {
6         public delegate void MyEvent ();
7         public event MyEvent XX {
8                 add { }
9                 remove { }
10         }
11         
12         public void add_XX (MyEvent e) { return; }
13 }
14