summary refs log tree commit diff stats
path: root/tests/compile/tforwardgeneric.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/tforwardgeneric.nim')
-rw-r--r--tests/compile/tforwardgeneric.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/compile/tforwardgeneric.nim b/tests/compile/tforwardgeneric.nim
deleted file mode 100644
index 84bef15cc..000000000
--- a/tests/compile/tforwardgeneric.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-discard """
-  output: "1.0000000000000000e+00 10"
-"""
-
-proc p[T](a, b: T): T
-
-echo p(0.9, 0.1), " ", p(9, 1)
-
-proc p[T](a, b: T): T =
-  result  = a + b
-