add testcase for #14227 (#15794)

This commit is contained in:
flywind
2020-10-30 22:53:45 +08:00
committed by GitHub
parent 2cfe5e0745
commit ae86df12af

23
tests/macros/t14227.nim Normal file
View File

@@ -0,0 +1,23 @@
discard """
action: "compile"
"""
import sugar
block:
let y = @[@[1, 2], @[2, 4, 6]]
let x = collect(newSeq):
for i in y:
if i.len > 2:
for j in i:
j
echo(x)
block:
let y = @[@[1, 2], @[2, 4, 6]]
let x = collect(newSeq):
for i in y:
for j in i:
if i.len > 2:
j
echo(x)