ARC: yet another silly bugfix

This commit is contained in:
Araq
2019-11-22 17:18:01 +01:00
parent f0c5d99924
commit c85e266d1d
2 changed files with 31 additions and 0 deletions

View File

@@ -692,6 +692,8 @@ proc track(tracked: PEffects, n: PNode) =
case n.kind
of nkSym:
useVar(tracked, n)
if n.sym.typ != nil and tfHasAsgn in n.sym.typ.flags:
tracked.owner.flags.incl sfInjectDestructors
of nkRaiseStmt:
if n[0].kind != nkEmpty:
n.sons[0].info = n.info

View File

@@ -0,0 +1,29 @@
discard """
output: '''leak: true'''
cmd: '''nim c --gc:arc $file'''
"""
type
T = ref object
s: seq[T]
data: string
proc create(): T = T(s: @[], data: "abc")
proc addX(x: T; data: string) =
x.data = data
proc addX(x: T; child: T) =
x.s.add child
proc main(rootName: string) =
var root = create()
root.data = rootName
# this implies we do the refcounting wrong. We should leak memory here
# and not create a destruction cycle:
root.addX root
let mem = getOccupiedMem()
main("yeah")
# since we created a retain cycle, we MUST leak memory here:
echo "leak: ", getOccupiedMem() - mem > 0