Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-800.cs
1 // Compiler options: -unsafe
2
3 struct S
4 {
5 }
6
7 unsafe class C
8 {
9         const int***[] m_p = null;
10         const S**[,] m_s2 = null;
11         
12         public static void Main ()
13         {
14                 const int*[] c = null;
15                 const S*[,] s = null;
16                 const void*[][][][] v = null;
17                         
18                 const int***[] c2 = m_p;
19                 const S**[,] s2 = m_s2;
20                 const void**[][] v2 = null;
21                 
22                 int***[] a1 = m_p;
23                 S**[,] a2 = m_s2;
24         }
25 }