This commit is contained in:
Andreas Rumpf
2020-03-19 12:57:45 +01:00
committed by GitHub
parent 1f2042411a
commit 034dad8e32
2 changed files with 34 additions and 2 deletions

29
tests/arc/tarcmisc.nim Normal file
View File

@@ -0,0 +1,29 @@
discard """
output: '''
destroyed: false
destroyed: false
destroying variable'''
cmd: "nim c --gc:arc $file"
"""
# bug #13691
type Variable = ref object
value: int
proc `=destroy`(self: var typeof(Variable()[])) =
echo "destroying variable"
proc newVariable(value: int): Variable =
result = Variable()
result.value = value
proc test(count: int) =
var v {.global.} = newVariable(10)
var count = count - 1
if count == 0: return
test(count)
echo "destroyed: ", v.isNil
test(3)