mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
* update to the latest Jester * remove deprecated procs from some stdlib modules * 'criterion' is not maintained anymore and relies on obsolete stuff
14 lines
236 B
Nim
14 lines
236 B
Nim
discard """
|
|
errormsg: "cannot evaluate at compile time: BUILTIN_NAMES"
|
|
line: 11
|
|
"""
|
|
|
|
import sets
|
|
|
|
let BUILTIN_NAMES = toHashSet(["int8", "int16", "int32", "int64"])
|
|
|
|
macro test*(): bool =
|
|
echo "int64" notin BUILTIN_NAMES
|
|
|
|
echo test()
|