diff options
author | Araq <rumpf_a@web.de> | 2015-02-12 14:56:42 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-02-12 14:56:57 +0100 |
commit | c4eddb3fdafe3494fa1b1300bcbf1314b7540490 (patch) | |
tree | 87ebc8d8f759efedf09f127f0c2acebc0c87bf0e /tests/overload | |
parent | 41385f3aaf4da7a13df64ec98a2b0b713c88c1d6 (diff) | |
download | Nim-c4eddb3fdafe3494fa1b1300bcbf1314b7540490.tar.gz |
ordinary parameters can follow a varargs parameter
Diffstat (limited to 'tests/overload')
-rw-r--r-- | tests/overload/tparams_after_varargs.nim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/overload/tparams_after_varargs.nim b/tests/overload/tparams_after_varargs.nim new file mode 100644 index 000000000..a93e280b9 --- /dev/null +++ b/tests/overload/tparams_after_varargs.nim @@ -0,0 +1,17 @@ +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 + +template takesBlock(a, b: int, x: varargs[expr]; blck: stmt) = + blck + echo a, b + +takesBlock 1, 2, "some", 0.90, "random stuff": + echo "yay" |