1 // Compiler options: -unsafe
9 const int***[] m_p
= null;
10 const S
**[,] m_s2
= null;
12 public static void Main ()
14 const int*[] c
= null;
16 const void*[][][][] v
= null;
18 const int***[] c2
= m_p
;
19 const S
**[,] s2
= m_s2
;
20 const void**[][] v2
= null;