Files
Nim/tests/clearmsg/tmacroerrorproc.nim
2018-12-11 21:23:21 +01:00

14 lines
236 B
Nim

discard """
errormsg: "Expected a node of kind nnkCharLit, got nnkCommand"
file: "tmacroerrorproc.nim"
line: 13
"""
# issue #4915
import macros
macro mixer(n: typed): untyped =
expectKind(n[0], nnkCharLit)
mixer:
echo "owh"