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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1656-3.cs
blob
03c62c3d4ae8acfc0eabda7f8ce9ab173499c191
1
// CS1656: Cannot assign to `i' because it is a `foreach iteration variable'
2
// Line: 9
3
4
class
X
{
5
6
static void
Main
()
7
{
8
foreach
(
int
i
in new int
[]
{ 2, 3 }
) {
9
i
=
4
;
10
}
11
}
12
}
13