Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-800.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f08ed30482754e1495102a02f71a31b2814a8fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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;
	}
}