Files
Nim/tests/exception/texcsub.nim
2014-01-13 02:10:03 +01:00

18 lines
225 B
Nim

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