mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
14 lines
236 B
Nim
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"
|