[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1656.cs
1 // CS1656: Cannot assign to `m' because it is a `using variable'
2 // Line: 10
3 using System.IO;
4
5 class X {
6
7         static void Main ()
8         {
9                 using (MemoryStream m = new MemoryStream ()){
10                         m = null;
11                 }
12         }
13 }
14