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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0162-15.cs
blob
02459c9052bf80bcf340c8bf7551ca16880cba83
1
// CS0162: Unreachable code detected
2
// Line: 10
3
// Compiler options: -warnaserror
4
5
class
C
6
{
7
void
Test
(
int
a
)
8
{
9
return
;
10
if
(
a
>
0
) {
11
int
x
=
a
+
20
;
12
return
;
13
}
14
}
15
}