[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / test-anon-93.cs
1 using System;
2
3 namespace BaseTest
4 {
5         public class MainClass
6         {
7                 EventHandler myEvent;
8
9                 public event EventHandler MyEvent
10                 {
11                         add { myEvent += delegate { value (this, EventArgs.Empty); };  }
12                         remove { myEvent += delegate { value (this, EventArgs.Empty); }; }
13                 }
14
15                 public void RaiseMyEvent (object o, EventArgs e)
16                 {
17                         myEvent (o, e);
18                 }
19
20                 public static void Main ()
21                 {
22                         MainClass c = new MainClass ();
23                         c.MyEvent += (o, e) => Console.WriteLine ("Hey! from {0} / {1}", o, e);
24                         c.RaiseMyEvent (null, null);
25                 }
26         }
27 }
28