codeowners update
[mono.git] / mcs / tests / test-anon-79.cs
1 class Test
2 {
3         delegate void D ();
4         event D E;
5         D proxy;
6
7         event D Changed
8         {
9                 add
10                 {
11                         if (proxy == null)
12                                 proxy = delegate () { Foo (); };
13                 }
14                 remove
15                 {
16                 }
17         }
18
19         void Foo ()
20         {
21         }
22
23         public static void Main ()
24         {
25         }
26 }