fix #18971 (#19070) [backport:1.6]

since the example code return value from global variable, instead
of first argument, the `n.len` is 1 which causes compiler crashes.

(cherry picked from commit f755e452d2)
This commit is contained in:
Derek 呆
2021-10-30 01:55:48 +08:00
committed by narimiran
parent 1ac029c0f6
commit 97286db546
2 changed files with 11 additions and 1 deletions

View File

@@ -479,7 +479,7 @@ proc destMightOwn(c: var Partitions; dest: var VarIndex; n: PNode) =
# calls do construct, what we construct must be destroyed,
# so dest cannot be a cursor:
dest.flags.incl ownsData
elif n.typ.kind in {tyLent, tyVar}:
elif n.typ.kind in {tyLent, tyVar} and n.len > 1:
# we know the result is derived from the first argument:
var roots: seq[(PSym, int)]
allRoots(n[1], roots, RootEscapes)

10
tests/arc/t18971.nim Normal file
View File

@@ -0,0 +1,10 @@
discard """
cmd: "nim c --gc:arc $file"
"""
type MyObj = ref object
var o = MyObj()
proc x: var MyObj = o
var o2 = x()