diff options
Diffstat (limited to 'tests/generics/tmap_auto.nim')
-rw-r--r-- | tests/generics/tmap_auto.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/generics/tmap_auto.nim b/tests/generics/tmap_auto.nim index dea9b571f..572556722 100644 --- a/tests/generics/tmap_auto.nim +++ b/tests/generics/tmap_auto.nim @@ -1,4 +1,4 @@ -import future +import future, sequtils let x = map(@[1, 2, 3], x => x+10) assert x == @[11, 12, 13] |