Files
Nim/tests/clearmsg/tmacroerrorproc.nim
2017-04-10 23:58:05 +03:00

14 lines
236 B
Nim

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