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
[interp] Remove unreachable code (#12411)
[mono-project.git]
/
mono
/
tests
/
exception19.cs
blob
2e23c59d049836f3e06cc9a743efb4ffd0c9d800
1
using
System
;
2
3
public class
TestFinallyException
{
4
5
public static int
Main
(
string
[]
args
)
6
{
7
int
ret
= -
1
;
8
9
try
{
10
}
finally
{
11
try
{
12
try
{
13
}
finally
{
14
throw new
Exception
();
15
}
16
ret
=
1
;
17
}
catch
(
Exception
) {
18
ret
=
0
;
19
}
20
}
21
22
return
ret
;
23
}
24
25
}