summary refs log tree commit diff stats
path: root/tests/errmsgs/tnnodeindexkind.nim
blob: 9ea045e66589a0370e97e90d6c8b0baeefd621a2 (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "cannot set child of node kind: nnkStrLit"
  line: 7
"""
import macros
macro t(x: untyped): untyped =
  x[0] = newEmptyNode()
t("abc")