summary refs log tree commit diff stats
path: root/tests/generics/ttempl_in_generic.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generics/ttempl_in_generic.nim')
-rw-r--r--tests/generics/ttempl_in_generic.nim8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/generics/ttempl_in_generic.nim b/tests/generics/ttempl_in_generic.nim
deleted file mode 100644
index f04b9d216..000000000
--- a/tests/generics/ttempl_in_generic.nim
+++ /dev/null
@@ -1,8 +0,0 @@
-
-# bug #4600
-template foo(x: untyped): untyped = echo 1
-template foo(x,y: untyped): untyped = echo 2
-
-proc bar1[T](x: T) = foo(x)
-proc bar2(x: float) = foo(x,x)
-proc bar3[T](x: T) = foo(x,x)