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
/
cs0162-16.cs
blob
982cff5fc9f80de26d2a8752b63335b135980236
1
// CS0162: Unreachable code detected
2
// Line: 10
3
// Compiler options: -warnaserror
4
5
using
System
;
6
7
class
C
8
{
9
void
Test
()
10
{
11
return
;
12
const int
a
=
0
;
13
if
(
a
>
0
) {
14
int
x
=
a
+
20
;
15
return
;
16
}
17
}
18
}