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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0429-4.cs
blob
d80803996744eadffa1d1b8b0b78120dba5b8ad7
1
// CS0429: Unreachable expression code detected
2
// Line: 12
3
// Compiler options: -warnaserror
4
5
public class
X
6
{
7
static void
test
(
int
stop
)
8
{
9
int
pos
=
0
;
10
do
{
11
break
;
12
}
while
(
pos
<
stop
);
13
}
14
}