[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / gtest-456.cs
1 using System;
2
3 class G<T>
4 {
5         public struct S
6         {
7                 public string Test ()
8                 {
9                         return GetType ().ToString ();
10                 }
11         }
12 }
13
14 class C
15 {       
16         public static int Main ()
17         {
18                 string s = new G<int>.S ().Test ();
19                 if (s != "G`1+S[System.Int32]")
20                         return 1;
21
22                 return 0;
23         }
24 }