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-574.cs
blob
8aa00c88ead932bb9c696c3f1eecac987d99abe9
1
using
System
;
2
using
System
.
Threading
;
3
4
enum
A
{
5
Hello
,
6
Bye
7
}
8
9
class
X
{
10
11
public static int
Main
() {
12
try
{
13
switch
(
0
) {
14
default
:
15
throw new
Exception
(
"FOO"
);
16
break
;
17
}
18
}
catch
(
Exception
) {
19
return
0
;
20
}
21
22
return
1
;
23
}
24
}
25