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
Revert some changes which don't have proper dependencies.
[mono-project.git]
/
mono
/
profiler
/
test-excleave.cs
blob
b1d880ddf3bb54c3b4168531dd29d2a65a615ec6
1
using
System
;
2
3
class
T
{
4
5
static int
f
=
0
;
6
static int
c
=
0
;
7
static void
throw_ex
() {
8
try
{
9
throw new
Exception
();
10
}
finally
{
11
f
++;
12
}
13
}
14
static void
Main
(
string
[]
args
) {
15
for
(
int
i
=
0
;
i
<
1000
; ++
i
) {
16
try
{
17
throw_ex
();
18
}
catch
{
19
c
++;
20
}
21
}
22
}
23
}
24