blob: ec418c3697b7435f6f3af4434dd632c7df8a924d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
// Line: 7
// Compiler options: -unsafe
class C
{
int*[] data = new int*[16];
unsafe C ()
{
}
}
|