mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 13:30:33 +00:00
ARC: yet another silly bugfix
This commit is contained in:
@@ -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
|
||||
|
||||
29
tests/destructor/tarc2.nim
Normal file
29
tests/destructor/tarc2.nim
Normal 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
|
||||
Reference in New Issue
Block a user