Files
Nim/tests/exception/tcontinuexc.nim
Adam Strzelecki e80465dacf tests: Trim .nim files trailing whitespace
via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
2015-09-04 23:04:32 +02:00

31 lines
514 B
Nim

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