summary refs log tree commit diff stats
path: root/tests/trmacros/targlist.nim
blob: 46235dab1705a172c04f5b3b1d7b7dedc26b733a (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  output: "12false3ha"
"""

proc f(x: varargs[string, `$`]) = discard
template optF{f(x)}(x: varargs[untyped]) =
  writeLine(stdout, x)

f 1, 2, false, 3, "ha"