Merged into single file, added assertions
[mono.git] / mcs / tests / test-505.cs
1 class T {
2         public static int i;
3         static int f ()
4         {
5                 try {
6                 } finally {
7                         throw new System.Exception ("...");
8                 }
9         }
10         static void Main ()
11         {
12                 try {
13                         i = f ();
14                 } catch {
15                         return;
16                 }
17                 throw new System.Exception ("error");
18         }
19 }