Added test cases for return in except statements.

This commit is contained in:
Audun Wilhelmsen
2014-02-23 00:20:16 +01:00
parent 66675d174b
commit ef379d0a10
2 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
discard """
file: "tnestedreturn.nim"
outputsub: "Error: unhandled exception: Problem [EOS]"
exitcode: "1"
"""
proc test4() =
try:
try:
raise newException(EOS, "Problem")
except EOS:
return
finally:
discard
# Should cause unhandled exception error,
# but could cause segmentation fault if
# exceptions are not handled properly.
test4()
raise newException(EOS, "Problem")