blob: 12e42e1235a53b67649d72f8c61d4b61f21de801 (
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: 8
// Compiler options: -unsafe
class X {
public void a ()
{
void *p;
}
static void Main () {}
}
|