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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-ex-filter-01.cs
blob
c01c35c8fd86c468ff7fb4d93397a9099f9c0714
1
using
System
;
2
3
class
X
4
{
5
public static int
Main
()
6
{
7
int
x
=
4
;
8
try
{
9
throw null
;
10
}
catch
(
NullReferenceException
)
when
(
x
>
0
) {
11
Console
.
WriteLine
(
"catch"
);
12
return
0
;
13
}
14
}
15
}