Files
Nim/tests/destructor/tgotoexceptions5.nim
Clyybber 394a56650a Fix #14647 (#14776)
* Fix #14647

* Correct fix

* Typo and add test

* For real now :p
2020-06-28 17:47:47 +02:00

46 lines
639 B
Nim

discard """
output: '''
before
swallowed
before
swallowed B
'''
cmd: "nim c --gc:arc --exceptions:goto -d:ssl $file"
"""
# bug #13599
proc main() =
try:
echo "before"
raise newException(CatchableError, "foo")
except AssertionDefect:
echo "caught"
echo "after"
try:
main()
except:
echo "swallowed"
proc mainB() =
try:
echo "before"
raise newException(CatchableError, "foo")
# except CatchableError: # would work
except AssertionDefect:
echo "caught"
except:
raise
echo "after"
try:
mainB()
except:
echo "swallowed B"
# bug #14647
import httpclient
newAsyncHttpClient().close()