summary refs log blame commit diff stats
path: root/tests/macros/tidgen.nim
blob: 88322b2273198a05541fe14ff79a535ef736c56f (plain) (tree)
1
2
3
4
5
6
7
8
9







                                        
                           
 
                    


                             

                                                


                      
discard """
  output: "3 4"
"""

import macros

# Test compile-time state in same module

var gid {.compileTime.} = 3

macro genId(): int =
  result = newIntLitNode(gid)
  inc gid

proc Id1(): int {.compileTime.} = return genId()
proc Id2(): int {.compileTime.} = return genId()

echo Id1(), " ", Id2()