diff options
Diffstat (limited to 'tests/collections/tseq.nim')
-rw-r--r-- | tests/collections/tseq.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/collections/tseq.nim b/tests/collections/tseq.nim index 6a28bc8e6..ac68e5636 100644 --- a/tests/collections/tseq.nim +++ b/tests/collections/tseq.nim @@ -204,3 +204,6 @@ block ttoseq: var y: type("a b c".split) y = "xzy" stdout.write("\n") + +block tseqmapitchain: + doAssert @[101, 102] == [1, 2].mapIt(func (x: int): int = it + x).mapIt(it(100)) \ No newline at end of file |