summary refs log tree commit diff stats
path: root/tests/clearmsg/tmacroerrorproc.nim
blob: 86726af72b179b50f1a48876b01172f8f2c88016 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"