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
/
cs0162-5.cs
blob
1fa8b3de5f804ac5dd656e8fcb0008574abb5890
1
// CS0162: Unreachable code detected
2
// Line: 12
3
// Compiler options: -warnaserror
4
5
using
System
;
6
7
public class
Driver
8
{
9
public static void
Main
()
10
{
11
int
yyTop
=
0
;
12
for
(; ; ++
yyTop
) {
13
if
(
yyTop
>
0
)
14
break
;
15
else
16
return
;
17
}
18
}
19
}
20