2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0214-3.cs
blob371a312095404f9409da946575adbf41afe65b26
1 // cs0214-3.cs: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 13
3 // Compiler options: -unsafe
5 struct X {
6 static unsafe void *a ()
8 return null;
11 static void Main ()
13 a ();