summary refs log tree commit diff stats
path: root/tests/macros/tdebugstmt.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/macros/tdebugstmt.nim')
-rw-r--r--tests/macros/tdebugstmt.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/macros/tdebugstmt.nim b/tests/macros/tdebugstmt.nim
index 421f8fd14..740ae7b05 100644
--- a/tests/macros/tdebugstmt.nim
+++ b/tests/macros/tdebugstmt.nim
@@ -6,7 +6,7 @@ x: some string'''
 
 import macros
 
-macro debug(n: varargs[expr]): stmt =
+macro debug(n: varargs[untyped]): untyped =
   # `n` is a Nim AST that contains the whole macro invocation
   # this macro returns a list of statements:
   result = newNimNode(nnkStmtList, n)