mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
9 lines
159 B
Nim
9 lines
159 B
Nim
discard """
|
|
errormsg: "cannot set child of node kind: nnkStrLit"
|
|
line: 7
|
|
"""
|
|
import macros
|
|
macro t(x: untyped): untyped =
|
|
x[0] = newEmptyNode()
|
|
t("abc")
|