[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-optional-34.cs
1 public struct S
2 {
3         public S (double left = 0, double top = 0)
4                 : this ()
5         {
6         }
7 }
8
9 class X
10 {
11         public static void Main ()
12         {
13         }
14 }