* fix #14369

* empty commit
This commit is contained in:
cooldome
2020-05-18 08:38:36 +01:00
committed by GitHub
parent b11ff518fa
commit bc42e9aa98
2 changed files with 11 additions and 0 deletions

View File

@@ -727,6 +727,7 @@ proc genRaiseStmt(p: BProc, t: PNode) =
initLocExprSingleUse(p, t[0], a)
finallyActions(p)
var e = rdLoc(a)
discard getTypeDesc(p.module, t[0].typ)
var typ = skipTypes(t[0].typ, abstractPtrs)
# XXX For reasons that currently escape me, this is only required by the new
# C++ based exception handling:

View File

@@ -0,0 +1,10 @@
discard """
targets: "cpp"
output: ""
"""
#issue #14369 case 2
type RuntimeError {.requiresInit, importcpp: "std::runtime_error", header: "<stdexcept>".} = object
proc initRuntimeError(a: cstring): RuntimeError {.importcpp: "std::runtime_error(@)", constructor.}
try: raise initRuntimeError("foo2")
except: discard