summary refs log tree commit diff stats
path: root/tests/run
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/tstringinterp.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/tstringinterp.nim b/tests/run/tstringinterp.nim
index 423e7bb61..676e7ea1d 100644
--- a/tests/run/tstringinterp.nim
+++ b/tests/run/tstringinterp.nim
@@ -5,7 +5,7 @@ discard """
 
 import macros, parseutils, strutils
 
-proc concat(strings: openarray[string]): string =
+proc concat(strings: varargs[string]): string =
   result = newString(0)
   for s in items(strings): result.add(s)