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
/
cs0201-4.cs
blob
6c3db68994078a702ce9096984cd391eb058e74d
1
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2
// Line: 8
3
4
class
MainClass
5
{
6
public static void
Main
()
7
{
8
for
(
int
i
=
0
;
i
++;
i
<
8
) {
9
}
10
}
11
}
12