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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1656.cs
blob
3b36dfbc1f2555dee4e1c3080df9537bacff64a6
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