codeowners update
[mono.git] / mcs / tests / test-anon-66.cs
1 public class Test
2 {
3         public delegate void TestEventHandler ();
4         public event TestEventHandler testEvent;
5
6         public event TestEventHandler TestEvent
7         {
8                 add
9                 {
10                         TestEventHandler fun = delegate () { value (); };
11                         fun ();
12                 }
13                 remove { }
14         }
15         
16         public static void Main () { }
17 }