diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-04-24 09:34:20 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-24 09:34:29 +0200 |
commit | ee366f17469a96b418b58db17e03c892cf4f17d8 (patch) | |
tree | f066aac7a9a6dd11c498b90c073c26f7cff4c4b0 /tests | |
parent | 8ce9e434348f6f63b81f7a788bd4093996dbaca7 (diff) | |
download | Nim-ee366f17469a96b418b58db17e03c892cf4f17d8.tar.gz |
.experimental can now be used to enable specific features
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parallel/tparfind.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parallel/tparfind.nim b/tests/parallel/tparfind.nim index 9de5012f5..4b3610c67 100644 --- a/tests/parallel/tparfind.nim +++ b/tests/parallel/tparfind.nim @@ -4,7 +4,7 @@ discard """ import threadpool, sequtils -{.experimental.} +{.experimental: "parallel".} proc linearFind(a: openArray[int]; x, offset: int): int = for i, y in a: |