teffects7.nim 237 B

123456789101112131415
  1. discard """
  2. errormsg: "can raise an unlisted exception: ref ValueError"
  3. line: 10
  4. """
  5. proc foo() {.raises: [].} =
  6. try:
  7. discard
  8. except KeyError:
  9. raise newException(ValueError, "foo")
  10. except Exception:
  11. discard
  12. foo()