[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-fixedbuffer-10.cs
1 // Compiler options: -unsafe
2
3 using System;
4
5 public class Program
6 {
7         public static void Main ()
8         {
9                 new TestStruct ("a");
10         }
11 }
12
13 public unsafe struct TestStruct
14 {
15         private fixed byte symbol[30];
16
17         public TestStruct (string a)
18         {
19         }
20         
21         public static TestStruct Default {
22                 get {
23                         TestStruct h;
24                         return h;
25                 }
26         }
27 }