2 // Tests rethrowing an exception
7 public static int Main ()
9 bool one
= false, two
= false;
13 throw new Exception ();
14 } catch (Exception e
) {
16 Console
.WriteLine ("Caught");
21 Console
.WriteLine ("Again");
25 Console
.WriteLine ("Ok");
28 Console
.WriteLine ("Failed");