[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0208-8.cs
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `_Port'
2 // Line: 16
3 // Compiler options: -unsafe
4
5 using System.Runtime.InteropServices;
6
7 [StructLayout(LayoutKind.Sequential)]
8 internal unsafe struct _Port {
9         [MarshalAs(UnmanagedType.ByValTStr, SizeConst=128)] char[] port;
10 }
11
12 unsafe class d {
13         static void Main ()
14         {
15                 _Port * port = null;
16         }
17 }