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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-873.cs
blob
abe3b3b4ffa4ec832d7873c962d4bc0a1af287b1
1
using
System
;
2
3
class
Program
4
{
5
static int
Main
()
6
{
7
int
foo
=
9
;
8
9
switch
(
foo
) {
10
case
1
:
11
gotoTarget
:
12
{
13
return
0
;
14
}
15
default
:
16
{
17
if
(
foo
!=
0
) {
18
goto
gotoTarget
;
19
}
20
21
break
;
22
}
23
}
24
25
return
1
;
26
}
27
}
28