[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-fixedbuffer-02.cs
1 // Compiler options: -unsafe
2
3 using System.Runtime.InteropServices;
4
5 public unsafe struct A
6 {
7         fixed byte fileid [DbConst.DB_FILE_ID_LEN];
8 }
9
10 public static class DbConst
11 {
12         public const int DB_FILE_ID_LEN = 20;
13 }
14
15 [StructLayout(LayoutKind.Sequential, Size=92)]
16 internal unsafe struct hci_dev_info {
17         public fixed sbyte name[8];
18         private fixed byte bdaddr[6];
19         hci_dev_info* foo;
20 }
21
22 class M
23 {
24         public static void Main ()
25         {
26         }
27 }