Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0214-3.cs
blob5d0494e30f3358327fae8ce513f512e903f050ad
1 // CS0214: 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 ();