[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-877.cs
1 using System;
2
3 struct S
4 {
5         string value;
6
7         public S (int arg)
8         {
9                 throw new ApplicationException ();
10         }
11 }
12
13 public class A
14 {
15         public static void Main ()
16         {
17         }
18 }