Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / 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 ()