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
/
cs1023.cs
blob
94f8b6af323f0968a4dd8e4a057c4997fd2a3ff7
1
// cs1023.cs: An embedded statement may not be a declaration or labeled statement
2
// Line: 9
3
4
class
Test
5
{
6
static void
Main
()
7
{
8
for
(
int
i
=
0
;
i
<
1000000
;
i
++)
9
int
k
=
i
;
10
}
11
}