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