mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
9 lines
191 B
Nim
9 lines
191 B
Nim
|
|
# 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)
|