Files
Nim/tests/run/texcsub.nim
2013-03-16 23:53:07 +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!