using System;
public class Program
{
public static void Main()
try {
var foo = Activator.CreateInstance(typeof(Foo));
} catch {}
Console.WriteLine("done");
}
class Foo {
public Foo() {
throw new Exception();