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-872.cs
blob
e501d330cedd4aa79378095cd88e8aad0841f44f
1
using
System
;
2
3
class
X
4
{
5
public static void
Main
()
6
{
7
int
x
=
1
;
8
switch
(
x
) {
9
case
1
:
10
try
{
11
goto case
6
;
12
}
catch
{
13
}
14
break
;
15
case
6
:
16
try
{
17
goto default
;
18
}
catch
{
19
}
20
break
;
21
default
:
22
break
;
23
}
24
}
25
}