2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / 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 ()