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-9.cs
blob
48516c22926c38423c809960b2efaff0405eef10
1
// cs0642-9.cs : Possible mistaken empty statement
2
// Line: 11
3
// Compiler options: /warnaserror /warn:3
4
using
System
;
5
public class
C
6
{
7
public static int
p
=
0
;
8
public static void
Foo
()
9
{
10
if
(
p
<
5
)
11
;
12
else
13
Console
.
WriteLine
();
14
}
15
}
16