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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0429.cs
blob
a1be2d9b2cfc8290fd4c43f603729129e2aa0ee0
1
// cs0429.cs: Unreachable expression code detected
2
// Line: 9
3
// Compiler options: -warn:4 -warnaserror
4
5
class
Main
6
{
7
public void
Method
(
int
i
)
8
{
9
if
(
false
&&
i
>
10
)
10
return
;
11
}
12
}