(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0214-3.cs
blob4b5e5e0235c46d185da89331fff52ac1a0d316b5
1 // cs0214: Pointer can only be used in 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 ();