mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
close #11042; add testcase
(cherry picked from commit 8a344cb25b)
This commit is contained in:
55
tests/closure/t11042.nim
Normal file
55
tests/closure/t11042.nim
Normal file
@@ -0,0 +1,55 @@
|
||||
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
|
||||
Reference in New Issue
Block a user