diff options
author | Araq <rumpf_a@web.de> | 2019-01-13 17:19:36 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-01-13 17:19:36 +0100 |
commit | 3c2d82eaae8054e1f52201d1429214dd15cfef95 (patch) | |
tree | 255495c5ab11afe9bc5f18f490feb50c40719421 /tests | |
parent | 80c69ffd31ec896497479203d3c282a5ba08d9c4 (diff) | |
download | Nim-3c2d82eaae8054e1f52201d1429214dd15cfef95.tar.gz |
make megatest green
Diffstat (limited to 'tests')
-rw-r--r-- | tests/macros/tvarargsuntyped.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/macros/tvarargsuntyped.nim b/tests/macros/tvarargsuntyped.nim index f0fcff662..5a06adcca 100644 --- a/tests/macros/tvarargsuntyped.nim +++ b/tests/macros/tvarargsuntyped.nim @@ -105,5 +105,4 @@ template t1(s: int, v: varargs[typed]) = echo s t2(s, v) -when isMainModule: - t1(10, "hello", 18.0) +t1(10, "hello", 18.0) |