blob: 5c489018ee3892c345d557a1a95440208c47f96c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// CS1657: Cannot pass `m' as a ref or out argument because it is a `using variable'
// Line: 11
using System.IO;
class E
{
public E (int[] args)
{
using (MemoryStream m = new MemoryStream ()){
Init (out m);
}
}
void Init (out MemoryStream val)
{
val = null;
}
}
|