[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-321.cs
1 using System;
2  
3 struct X : IDisposable {
4         public void Dispose ()
5         {
6         }
7  
8         public static void Main ()
9         {
10                 X x = new X ();
11                 using (x)
12                         ;
13         }
14 }