Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-511.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 }