summary refs log tree commit diff stats
path: root/tests/macros/t8706.nim
Commit message (Collapse)AuthorAgeFilesLines
* Do not materialize empty varargs[untyped] arrays (#8715)LemonBoy2018-08-311-0/+21
When an empty nkArgList `varargs[untyped]` is passed around it is now reused for efficiency sake and to prevent the introduction of a spurious element: before this commit we'd pass the caller a nkArgList[nkHiddenStdConv[nkBracket]] node instead of just an empty nkArgList. Fixes #8706