[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0214-13.cs
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 7
3 // Compiler options: -unsafe
4
5 class C
6 {
7         int*[] data = new int*[16];
8         
9         unsafe C ()
10         {
11         }
12 }