gc:destructors: add first test program

This commit is contained in:
Andreas Rumpf
2019-02-19 23:32:41 +01:00
parent 68ce92d4eb
commit 7e404c670d
2 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
discard """
cmd: '''nim c --gc:destructors $file'''
output: '''1 1'''
"""
import allocators
include system / ansi_c
proc main =
var s: seq[string] = @[]
for i in 0..<80: s.add "foo"
main()
#echo s
let (a, d) = allocCounters()
cprintf("%ld %ld\n", a, d)