Files
Nim/tests/exception/texcsub.nim
2015-04-27 23:11:59 +02:00

18 lines
229 B
Nim

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