summary refs log tree commit diff stats
path: root/tests/generics/tspecialized_procvar.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generics/tspecialized_procvar.nim')
-rw-r--r--tests/generics/tspecialized_procvar.nim17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/generics/tspecialized_procvar.nim b/tests/generics/tspecialized_procvar.nim
deleted file mode 100644
index 4bdc94a66..000000000
--- a/tests/generics/tspecialized_procvar.nim
+++ /dev/null
@@ -1,17 +0,0 @@
-discard """
-  output: '''concrete 88'''
-"""
-
-# Another regression triggered by changed closure computations:
-
-proc foo[T](x: proc(): T) =
-  echo "generic ", x()
-
-proc foo(x: proc(): int) =
-  echo "concrete ", x()
-
-# note the following 'proc' is not .closure!
-foo(proc (): auto {.nimcall.} = 88)
-
-# bug #3499 last snippet fixed
-# bug 705  last snippet fixed