summary refs log tree commit diff stats
path: root/tests/vm/tgloballetfrommacro.nim
blob: 14dbff1e8334f3008d044547d80782bc8f054078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
errormsg: "cannot evaluate at compile time: BUILTIN_NAMES"
line: 11
"""

import sets

let BUILTIN_NAMES = toSet(["int8", "int16", "int32", "int64"])

macro test*(): bool =
  echo "int64" notin BUILTIN_NAMES

echo test()