summary refs log tree commit diff stats
path: root/tests/overload/tparams_after_varargs.nim
blob: ad8f19ad3f9bccd84d7e128a7c32fcc210a476aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
discard """
  output: '''a 1 b 2 x @[3, 4, 5] y 6 z 7
yay
12
'''
"""

proc test(a, b: int, x: varargs[int]; y, z: int) =
  echo "a ", a, " b ", b, " x ", @x, " y ", y, " z ", z

test 1, 2, 3, 4, 5, 6, 7

# XXX maybe this should also work with ``varargs[untyped]``
template takesBlockA(a, b: untyped; x: varargs[typed]; blck: untyped): untyped =
  blck
  echo a, b

takesBlockA 1, 2, "some", 0.90, "random stuff":
  echo "yay"