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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs0429.cs
blob
ae6c158c47fec80993b770816f0fbe3e66c0308b
1
// CS0429: 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
}