This commit is contained in:
Arne Döring
2019-08-31 19:32:59 +02:00
committed by Andreas Rumpf
parent 326a333c8b
commit 6e01be34ef
3 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,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()