bug4.cs 221 B

123456789101112131415161718
  1. //
  2. // Fixed
  3. //
  4. using System;
  5. class X {
  6. static void Main ()
  7. {
  8. try {
  9. throw new Exception ();
  10. } catch (Exception e) {
  11. Console.WriteLine ("Caught");
  12. throw;
  13. } catch {
  14. Console.WriteLine ("Again");
  15. }
  16. }
  17. }