fix run-test
[mcs.git] / errors / cs0208-4.cs
blobfadf1c02b42fe357b5702ef1bd100e85fcbcb644
1 // cs0208-4.cs: 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 ()