blob: 9f6045364b3e138276db9a966a216be9fb2ad820 (
plain) (
tree)
|
|
discard """
output: '''(10, (20, ))'''
"""
import strutils, sequtils
# bug #668
type
TThing = ref object
data: int
children: seq[TThing]
proc `$`(t: TThing): string =
result = "($1, $2)" % @[$t.data, join(map(t.children, proc(th: TThing): string = $th), ", ")]
proc somethingelse(): seq[TThing] =
result = @[TThing(data: 20, children: @[])]
proc dosomething(): seq[TThing] =
result = somethingelse()
result = @[TThing(data: 10, children: result)]
echo($dosomething()[0])
|