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