eol
[mcs.git] / tests / test-523.cs
blob3d167030d6643a41fbacbb3d3f1f58665c26bdac
1 using System;
2 class T {
3 int stuff () {
4 try {
5 throw new Exception ();
6 } finally {
7 stuff_finally ();
10 int stuff2 () {
11 try {
12 throw new Exception ();
13 } catch {
14 try {
15 throw new Exception ();
16 } finally {
17 stuff_finally ();
19 } finally {
20 stuff_finally ();
23 int stuff3 () {
24 try {
25 throw new Exception ();
26 } catch {
27 try {
28 throw new Exception ();
29 } finally {
30 stuff_finally ();
32 } finally {
33 stuff_finally ();
36 void stuff4 () {
37 try {
38 throw new Exception();
39 } catch {
40 throw;
43 void stuff_finally () {
45 static void Main() {