mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
This commit is contained in:
16
tests/arc/texceptions.nim
Normal file
16
tests/arc/texceptions.nim
Normal file
@@ -0,0 +1,16 @@
|
||||
discard """
|
||||
cmd: "nim cpp --gc:arc $file"
|
||||
"""
|
||||
|
||||
block: # issue #13071
|
||||
type MyExcept = object of CatchableError
|
||||
proc gun()=
|
||||
raise newException(MyExcept, "foo:")
|
||||
proc fun()=
|
||||
var a = ""
|
||||
try:
|
||||
gun()
|
||||
except Exception as e:
|
||||
a = e.msg & $e.name # was segfaulting here for `nim cpp --gc:arc`
|
||||
doAssert a == "foo:MyExcept"
|
||||
fun()
|
||||
Reference in New Issue
Block a user