* 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

@@ -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