Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0214-13.cs
blobec418c3697b7435f6f3af4434dd632c7df8a924d
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 7
3 // Compiler options: -unsafe
5 class C
7 int*[] data = new int*[16];
9 unsafe C ()