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
/
cs0139-2.cs
blob
e89bf270346c26a8e99f4bf4d3477a3a28af624b
1
// CS0139: No enclosing loop out of which to break or continue
2
// Line: 10
3
public class
Test
4
{
5
public static void
Foo
(
char
c
)
6
{
7
switch
(
char
.
GetUnicodeCategory
(
c
)) {
8
default
:
9
if
(
c
==
'a'
)
10
continue
;
11
System
.
Console
.
WriteLine
();
12
break
;
13
}
14
}
15
}
16