Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

26 lines
366 B
C#

// Compiler options: -unsafe
struct S
{
}
unsafe class C
{
const int***[] m_p = null;
const S**[,] m_s2 = null;
public static void Main ()
{
const int*[] c = null;
const S*[,] s = null;
const void*[][][][] v = null;
const int***[] c2 = m_p;
const S**[,] s2 = m_s2;
const void**[][] v2 = null;
int***[] a1 = m_p;
S**[,] a2 = m_s2;
}
}