a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
244 B
C#
22 lines
244 B
C#
using System;
|
|
|
|
public class Foo {
|
|
public static void Main (string[] args)
|
|
{
|
|
try {
|
|
f ();
|
|
}
|
|
catch {}
|
|
}
|
|
|
|
static void f ()
|
|
{
|
|
throw new Exception ();
|
|
string hi;
|
|
try { }
|
|
finally {
|
|
Console.WriteLine ("hi = {0}", hi);
|
|
}
|
|
}
|
|
}
|