mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
9 lines
154 B
Nim
9 lines
154 B
Nim
discard """
|
|
errormsg: "cannot add to node kind: nnkInt8Lit"
|
|
line: 7
|
|
"""
|
|
import macros
|
|
macro t(x: untyped): untyped =
|
|
x.add(newEmptyNode())
|
|
t(38'i8)
|