Files
Nim/tests/clearmsg/tmacroerrorproc.nim
andri lim 74c6500a30 add test
2016-10-27 20:01:23 +07:00

13 lines
234 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, nnkCharLit)
mixer:
echo "owh"