summary refs log tree commit diff stats
path: root/tests/threads/tactors.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/threads/tactors.nim')
-rw-r--r--tests/threads/tactors.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/threads/tactors.nim b/tests/threads/tactors.nim
deleted file mode 100644
index ea052b9bd..000000000
--- a/tests/threads/tactors.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-discard """
-  outputsub: "150"
-"""
-
-import actors
-
-var
-  pool: ActorPool[int, void]
-createActorPool(pool)
-for i in 0 ..< 300:
-  pool.spawn(i, proc (x: int) {.thread.} = echo x)
-pool.join()
-