"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1657-2.cs
blob5c489018ee3892c345d557a1a95440208c47f96c
1 // CS1657: Cannot pass `m' as a ref or out argument because it is a `using variable'
2 // Line: 11
4 using System.IO;
6 class E
8 public E (int[] args)
10 using (MemoryStream m = new MemoryStream ()){
11 Init (out m);
15 void Init (out MemoryStream val)
17 val = null;