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] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-ex-filter-03.cs
blob
72984067304d0146e7d98717d10347de830b3985
1
using
System
;
2
3
class
X
4
{
5
public static int
Main
()
6
{
7
try
{
8
bool
x
=
true
;
9
try
{
10
throw new
ApplicationException
();
11
}
catch
(
NullReferenceException
)
when
(
x
) {
12
throw
;
13
}
14
15
return
1
;
16
}
catch
(
ApplicationException
) {
17
Console
.
WriteLine
(
"ok"
);
18
return
0
;
19
}
20
}
21
}