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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0642-2.cs
blob
67d2a167b7aba9f1df4806ca43e365b2245b51a8
1
// cs0642-2.cs: Possible mistaken empty statement
2
// Line: 10
3
// Compiler options: -warnaserror -warn:3
4
5
public class
C
6
{
7
public static void
Main
()
8
{
9
int
i
=
5
;
10
while
(
i
++ <
100
);
11
{ }
12
}
13
}
14