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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-385.cs
blob
b91c61a52eb2bac31183c17580b0e4b64ed6deef
1
class
Test
{
2
public static int
Main
()
3
{
4
int
i
=
5
;
5
switch
(
i
) {
6
case
5
:
7
if
(
i
==
5
)
8
break
;
9
return
1
;
10
default
:
11
return
2
;
12
}
13
System
.
Console
.
WriteLine
(
i
);
14
return
0
;
15
}
16
}
17