2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-anon-79.cs
blob990160fcc16c450f303513e437751e15b0b92633
1 class Test
3 delegate void D ();
4 event D E;
5 D proxy;
7 event D Changed
9 add
11 if (proxy == null)
12 proxy = delegate () { Foo (); };
14 remove
19 void Foo ()
23 public static void Main ()