merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / tests / test-512.cs
1 using System;
2
3 public class Foo {
4         public static void Main (string[] args)
5         {
6                 try {
7                         f ();
8                 }
9                 catch {}
10         }
11
12         static void f ()
13         {
14                 throw new Exception ();
15                 string hi = "";
16                 try { }
17                 finally {
18                         Console.WriteLine ("hi = {0}", hi);
19                 }
20         }
21 }