mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
27 lines
491 B
Nim
27 lines
491 B
Nim
discard """
|
|
outputsub: "ECcaught"
|
|
exitcode: "1"
|
|
"""
|
|
type
|
|
ESomething = object of Exception
|
|
ESomeOtherErr = object of Exception
|
|
|
|
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
|