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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0642-8.cs
blob
7bfba13cdfd11d976e35d82b0acaa192d58b2295
1
// CS0642: Possible mistaken empty statement
2
// Line: 13
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
Console
.
WriteLine
();
12
else
13
;
14
Console
.
WriteLine
();
15
}
16
}
17