**** Merged r40732-r40872 from MCS ****
[mono.git] / mcs / errors / cs1656.cs
1 // cs1656.cs: 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