blob: 06d730a5125494ef48964bdaeed19841140fe0e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
using System;
class T {
int stuff () {
try {
throw new Exception ();
} finally {
stuff_finally ();
}
}
int stuff2 () {
try {
throw new Exception ();
} catch {
try {
throw new Exception ();
} finally {
stuff_finally ();
}
} finally {
stuff_finally ();
}
}
int stuff3 () {
try {
throw new Exception ();
} catch {
try {
throw new Exception ();
} finally {
stuff_finally ();
}
} finally {
stuff_finally ();
}
}
void stuff4 () {
try {
throw new Exception();
} catch {
throw;
}
}
void stuff_finally () {
}
public static void Main() {
}
}
|