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-505.cs
blob
0ce8deccba553eeaa293271146ef39cdd75d9c2a
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
public static void
Main
()
11
{
12
try
{
13
i
=
f
();
14
}
catch
{
15
return
;
16
}
17
throw new
System
.
Exception
(
"error"
);
18
}
19
}