[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / test-anon-142.cs
1 using System;
2
3 public class Test
4 {
5         delegate void D ();
6         
7         public static int Main ()
8         {
9                 new Test ().Test_3<int> ();
10                 return 0;
11         }
12         
13         public void Test_3<T> () where T : struct
14         {
15                 D d = delegate () {
16                         T? tt = null;
17                 };
18                 d ();
19         }
20 }