[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0214-5.cs
blob3aee3df7e948293c0fe50613610d740439469eac
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 16
3 // Compiler options: -unsafe
5 using System;
7 public class Driver
9 public static unsafe byte* Frob
11 get { return (byte *) 0; }
14 public static void Main ()
16 IntPtr q = (IntPtr) Frob;