repo.or.cz
/
mono-debugger.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git]
/
mono
/
tests
/
exception13.cs
blob
e0b8369eb660acaf22ecb4a14db274aa7f9a3be9
1
using
System
;
2
3
public class
Ex
{
4
5
public static int
Main
() {
6
7
try
{
8
throw null
;
9
}
catch
{
10
return
0
;
11
}
12
return
1
;
13
}
14
}
15
16