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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0162-10.cs
blob
01d89abb6f2b4a3752c1ebf298f0331b1da74441
1
// CS0162: Unreachable code detected
2
// Line: 11
3
// Compiler options: -warnaserror -warn:2
4
5
class
Error
6
{
7
void
Test
()
8
{
9
switch
(
10
)
10
{
11
case
9
:
12
break
;
13
}
14
}
15
16
}