blob: a88ba4b3254d3ad1e1e4a291853837353bf46dbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# bug #1679
import macros, tables, hashes
proc hash(v: NimNode): Hash = 4 # performance is for suckers
macro test(body: stmt): stmt {.immediate.} =
var a = initCountTable[NimNode]()
a.inc(body)
test:
1 + 1
|