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
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs0162-11.cs
blob
1599c801879f112ba4dd3cd63e68912172864454
1
// CS0162: Unreachable code detected
2
// Line: 12
3
// Compiler options: -warnaserror -warn:2
4
5
class
Program
6
{
7
static int
Main
()
8
{
9
int
ctc_f
=
0
;
10
11
if
((++
ctc_f
==
0
&&
false
)) {
12
return
1
;
13
}
14
15
return
0
;
16
}
17
}
18