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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0103-5.cs
blob
ec03da4f81ed252a0172753aad3795ba369a8230
1
// CS0103: The name `i' does not exist in the current context
2
// Line: 6
3
4
class
X
{
5
void
Y
() {
6
for
(;
true
; ++
i
)
{ break; }
7
}
8
}
9