Files
Nim/tests/accept/run/tcontinuexc.nim
2011-05-01 20:11:55 +02:00

30 lines
500 B
Nim
Executable File

discard """
file: "tcontinuexc.nim"
outputsub: "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