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

proc f(x: varargs[string, `$`]) = nil
template optF{f(X)}(x: varargs[expr]) = 
  writeln(stdout, x)

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