mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
fix reraise (#11017)
This commit is contained in:
@@ -753,7 +753,7 @@ proc p(n: PNode; c: var Con): PNode =
|
||||
result = copyTree(n)
|
||||
result[1][0] = p(result[1][0], c)
|
||||
of nkRaiseStmt:
|
||||
if optNimV2 in c.graph.config.globalOptions:
|
||||
if optNimV2 in c.graph.config.globalOptions and n[0].kind != nkEmpty:
|
||||
let t = n[0].typ
|
||||
let tmp = getTemp(c, t, n.info)
|
||||
var m = genCopyNoCheck(c, t, tmp, n[0])
|
||||
|
||||
@@ -9,10 +9,14 @@ import system / ansi_c
|
||||
import core / allocators
|
||||
|
||||
proc mainA =
|
||||
var e: owned(ref ValueError)
|
||||
new(e)
|
||||
e.msg = "message"
|
||||
raise e
|
||||
try:
|
||||
var e: owned(ref ValueError)
|
||||
new(e)
|
||||
e.msg = "message"
|
||||
raise e
|
||||
except Exception as e:
|
||||
raise
|
||||
|
||||
|
||||
proc main =
|
||||
raise newException(ValueError, "argh")
|
||||
|
||||
Reference in New Issue
Block a user