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
[System.ServiceModel] Prevent crash in Dispatcher.ListenerLoopManager… (#7136)
[mono-project.git]
/
mono
/
tests
/
exception15.cs
blob
fed769abb028ae8dc480402ef1397ef901c1603a
1
using
System
;
2
3
class
Tests
{
4
public static int
Main
(){
5
int
i
=
0
;
6
try
{
7
try
{
8
throw new
NotImplementedException
();
9
}
10
finally
{
11
i
++;
12
Console
.
WriteLine
(
"Finally called"
);
13
}
14
}
catch
(
NotImplementedException
){
15
i
++;
16
Console
.
WriteLine
(
"Exception ignored"
);
17
}
18
19
if
(
i
!=
2
)
20
return
1
;
21
22
return
0
;
23
}
24
}