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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-807.cs
blob
b411bfc29288c6e46389a3bc55ef318870493f8d
1
using
System
;
2
3
class
AException
:
Exception
4
{
5
}
6
7
class
Program
8
{
9
public static int
Main
()
10
{
11
try
{
12
throw new
AException
();
13
}
catch
(
AException e1
) {
14
Console
.
WriteLine
(
"a"
);
15
try
{
16
}
catch
(
Exception
) {
17
}
18
19
return
0
;
20
}
catch
(
Exception e
) {
21
Console
.
WriteLine
(
"e"
);
22
}
23
24
return
1
;
25
}
26
}