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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-836.cs
blob
0cec8def80f7a90d033f1007d2c71b384f3d7190
1
using
System
;
2
3
public class
C
4
{
5
public static int
Main
()
6
{
7
try
{
8
throw new
ArgumentException
();
9
}
catch
(
ArgumentException
) {
10
return
0
;
11
}
catch
{
12
return
1
;
13
}
14
}
15
}