[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-800.cs
blob0f08ed30482754e1495102a02f71a31b2814a8fa
1 // Compiler options: -unsafe
3 struct S
7 unsafe class C
9 const int***[] m_p = null;
10 const S**[,] m_s2 = null;
12 public static void Main ()
14 const int*[] c = null;
15 const S*[,] s = null;
16 const void*[][][][] v = null;
18 const int***[] c2 = m_p;
19 const S**[,] s2 = m_s2;
20 const void**[][] v2 = null;
22 int***[] a1 = m_p;
23 S**[,] a2 = m_s2;