1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
discard """
targets: "c js"
output: '''
[
1
2
3
]
'''
"""
proc represent(i: int): iterator(): string =
result = iterator(): string =
yield $i
proc represent(s: seq[int]): iterator(): string =
result = iterator(): string =
yield "["
for i in s:
var events = represent(i)
for event in events():
yield event
yield "]"
let s = @[1, 2, 3]
var output = represent(s)
for item in output():
echo item
#------------------------------------------------------------------------------
# Issue #12747
type
ABC = ref object
arr: array[0x40000, pointer]
let a = ABC()
for a in a.arr:
assert a == nil
|