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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0139-2.cs
blob
1ec421ef1561efe497dc4d81108b745c154c42a2
1
// cs0139-2.cs : 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