texcsub.nim 229 B

123456789101112131415161718
  1. discard """
  2. file: "texcsub.nim"
  3. output: "caught!"
  4. """
  5. # Test inheritance for exception matching:
  6. try:
  7. raise newException(OSError, "dummy message")
  8. except Exception:
  9. echo "caught!"
  10. except:
  11. echo "wtf!?"
  12. #OUT caught!