summary refs log blame commit diff stats
path: root/tests/accept/run/tcontinuexc.nim
blob: c43e68c93a2926b7318487256ef5ef18559952e1 (plain) (tree)
1
2
3
4



                         














                                            

                       



                                            

             

 
discard """
  file: "tcontinuexc.nim"
  output: "ECcaught"
"""
type
  ESomething = object of E_Base
  ESomeOtherErr = object of E_Base

proc genErrors(s: string) =
  if s == "error!":
    raise newException(ESomething, "Test")
  else:
    raise newException(EsomeotherErr, "bla")

try:
  for i in 0..3:
    try:
      genErrors("error!")
    except ESomething:
      stdout.write("E")
    stdout.write("C")
    raise newException(EsomeotherErr, "bla")
finally:  
  echo "caught"

#OUT ECcaught