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
bring Mono Security to monotouch
[mcs.git]
/
tests
/
test-505.cs
blob
b6fc7444e781a81c9c6f810ec9146396e7fe0ec6
1
class
T
{
2
public static int
i
;
3
static int
f
()
4
{
5
try
{
6
}
finally
{
7
throw new
System
.
Exception
(
"..."
);
8
}
9
}
10
static void
Main
()
11
{
12
try
{
13
i
=
f
();
14
}
catch
{
15
return
;
16
}
17
throw new
System
.
Exception
(
"error"
);
18
}
19
}