repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1657-2.cs
blob
5c9add21b43061ca62074cb88fa15bca74087070
1
// cs1657-2.cs: Cannot pass `m' as a ref or out argument because it is a `using variable'
2
// Line: 11
3
4
using
System
.
IO
;
5
6
class
E
7
{
8
public
E
(
int
[]
args
)
9
{
10
using
(
MemoryStream m
=
new
MemoryStream
()){
11
Init
(
out
m
);
12
}
13
}
14
15
void
Init
(
out
MemoryStream val
)
16
{
17
val
=
null
;
18
}
19
}