summary refs log tree commit diff stats
path: root/tests/run/tgenericprocvar.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tgenericprocvar.nim')
-rw-r--r--tests/run/tgenericprocvar.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/run/tgenericprocvar.nim b/tests/run/tgenericprocvar.nim
deleted file mode 100644
index 7fdc58ca4..000000000
--- a/tests/run/tgenericprocvar.nim
+++ /dev/null
@@ -1,19 +0,0 @@
-discard """
-  output: "0false"
-"""
-
-# Test multiple generic instantiation of generic proc vars:
-
-proc threadProcWrapper[TMsg]() =
-  var x: TMsg
-  stdout.write($x)
-
-#var x = threadProcWrapper[int]
-#x()
-
-#var y = threadProcWrapper[bool]
-#y()
-
-threadProcWrapper[int]()
-threadProcWrapper[bool]()
-