[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0030-16.cs
1 // CS0030: Cannot convert type `T2[]' to `T1[]'
2 // Line: 8
3
4 class X
5 {
6         static void Foo<T1,T2> (T2[] array) where T1 : class where T2 : struct
7         {
8                 T1[] a = (T1[])array;
9         }
10 }