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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-193.cs
blob
01d8b150d3c8bcd1c5e82c7f769fc2d5174d85d0
1
using
System
;
2
3
class
A
4
{
5
static int
Test
(
int
i
)
6
{
7
switch
(
i
) {
8
case
1
:
9
Console
.
WriteLine
(
"1"
);
10
if
(
i
>
0
)
11
goto
LBL4
;
12
Console
.
WriteLine
(
"2"
);
13
break
;
14
15
case
3
:
16
Console
.
WriteLine
(
"3"
);
17
LBL4
:
18
Console
.
WriteLine
(
"4"
);
19
return
0
;
20
}
21
22
return
1
;
23
}
24
25
static int
Main
()
26
{
27
return
Test
(
1
);
28
}
29
}