summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-01-13 17:19:36 +0100
committerAraq <rumpf_a@web.de>2019-01-13 17:19:36 +0100
commit3c2d82eaae8054e1f52201d1429214dd15cfef95 (patch)
tree255495c5ab11afe9bc5f18f490feb50c40719421 /tests
parent80c69ffd31ec896497479203d3c282a5ba08d9c4 (diff)
downloadNim-3c2d82eaae8054e1f52201d1429214dd15cfef95.tar.gz
make megatest green
Diffstat (limited to 'tests')
-rw-r--r--tests/macros/tvarargsuntyped.nim3
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)