summary refs log blame commit diff stats
path: root/tests/exception/texcsub.nim
blob: 3dba357f9dff3c9bd97dd5096b88dfe74b0d2f36 (plain) (tree)
1
2
3
4



                     










                                          

 
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!