workaround the fact that top level statements currently don't produce destructor calls

This commit is contained in:
Araq
2018-08-21 21:33:19 +02:00
parent f12a5431a1
commit 9047c3f582

View File

@@ -42,18 +42,21 @@ when isMainModule:
# bug #985
type
Pony = object
name: string
Pony = object
name: string
proc `=destroy`(o: var Pony) =
echo "Pony is dying!"
proc getPony: Pony =
result.name = "Sparkles"
result.name = "Sparkles"
iterator items(p: Pony): int =
for i in 1..4:
yield i
for i in 1..4:
yield i
for x in getPony():
echo x
echo x
# XXX this needs to be enabled once top level statements
# produce destructor calls again.
echo "Pony is dying!"