// cs0214: Pointer can only be used in unsafe context // Line: 13 // Compiler options: -unsafe struct X { static unsafe void *a () { return null; } static void Main () { a (); } }