[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / gtest-472.cs
1 class C<T>
2 {
3         public virtual void CopyUnsafe(T[] value, params long[] fromIdx){}
4         public virtual bool CopyUnsafe(T[] value, long fromIdx) { return true; }
5
6         public virtual void CopyUnsafe(T[] value)
7         {
8                 bool b = CopyUnsafe(value, 0);
9         }
10 }
11
12 class A
13 {
14         public static void Main ()
15         {
16         }
17 }