[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0208-4.cs
blobbb6771a12c881992b0c4435bb49f2c3cb1e1a79c
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `object'
2 // Line: 11
3 // Compiler options: -unsafe
5 using System;
6 using System.Runtime.InteropServices;
8 class C
10 [DllImport ("xml2")]
11 unsafe static extern object* valuePop (IntPtr context);
12 public static void Main ()