repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0162-8.cs
blob
7500614a55a42ced58216679aa7bc8291c1dc5b3
1
// CS0162: Unreachable code detected
2
// Line: 9
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
public static int
Main
()
8
{
9
if
(
true
==
false
)
10
return
1
;
11
12
return
2
;
13
}
14
}