Files
Nim/tests/exception/texcsub.nim
2018-12-11 21:23:21 +01:00

14 lines
204 B
Nim

discard """
output: "caught!"
"""
# Test inheritance for exception matching:
try:
raise newException(OSError, "dummy message")
except Exception:
echo "caught!"
except:
echo "wtf!?"
#OUT caught!