2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-511.cs
blob8002d4acb5ee55f792555d591f4a5f6a6d2efd85
1 using System;
3 public class Foo {
4 public static void Main (string[] args)
6 try {
7 f ();
9 catch {}
12 static void f ()
14 throw new Exception ();
15 string hi;
16 try { }
17 finally {
18 Console.WriteLine ("hi = {0}", hi);