Files
Nim/tests/closure/t11042.nim
flywind 8a344cb25b closes #11042; add testcase (#19935)
close #11042; add testcase
2022-06-28 16:49:31 +08:00

55 lines
689 B
Nim

discard """
output:'''
foo: 1
foo: 2
bar: 1
bar: 2
foo: 1
foo: 2
bar: 1
bar: 2
bar: 3
bar: 4
bar: 5
bar: 6
bar: 7
bar: 8
bar: 9
'''
"""
# bug #11042
block:
iterator foo: int =
for x in 1..2:
echo "foo: ", x
for y in 1..2:
discard
for x in foo(): discard
let bar = iterator: int =
for x in 1..2:
echo "bar: ", x
for y in 1..2:
discard
for x in bar(): discard
block:
iterator foo: int =
for x in 1..2:
echo "foo: ", x
for y in 1..2:
discard
for x in foo(): discard
let bar = iterator: int =
for x in 1..9:
echo "bar: ", x
for y in 1..2:
discard
for x in bar(): discard