repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1656-4.cs
blob
e88bfb36444aa6abcda7ce203b832f7c1b4dd6dc
1
// CS1656: Cannot assign to `i' because it is a `foreach iteration variable'
2
// Line: 14
3
4
using
System
.
Collections
;
5
6
class
Test
{
7
static
IEnumerable
foo
()
{ return null; }
8
9
static void
Main
()
10
{
11
IEnumerable f
=
foo
();
12
if
(
f
!=
null
)
13
foreach
(
int
i
in
f
)
14
i
=
0
;
15
}
16
}