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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0163-2.cs
blob
945ae8ad09448352fb614e4c7142cf7fd53c6d85
1
// CS0163: Control cannot fall through from one case label `case 1:' to another
2
// Line: 9
3
4
public class
Program
5
{
6
public static void
Main
()
7
{
8
switch
(
1
) {
9
case
1
: {}
10
default
: {}
11
}
12
}
13
}