2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0214-4.cs
blobdc389b498ff11477f7fe0d875e476962dfca79be
1 // cs0214-4.cs: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 8
3 // Compiler options: -unsafe
5 class X {
6 public void a ()
8 void *p;
11 static void Main () {}