summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-04-24 09:34:20 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-04-24 09:34:29 +0200
commitee366f17469a96b418b58db17e03c892cf4f17d8 (patch)
treef066aac7a9a6dd11c498b90c073c26f7cff4c4b0 /tests
parent8ce9e434348f6f63b81f7a788bd4093996dbaca7 (diff)
downloadNim-ee366f17469a96b418b58db17e03c892cf4f17d8.tar.gz
.experimental can now be used to enable specific features
Diffstat (limited to 'tests')
-rw-r--r--tests/parallel/tparfind.nim2
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: