t5296.nim 187 B

123456789101112131415
  1. discard """
  2. cmd: "nim c -d:release $file"
  3. output: 1
  4. """
  5. proc bug() : void =
  6. var x = 0
  7. try:
  8. inc x
  9. raise new(Exception)
  10. except Exception:
  11. echo x
  12. bug()