summary refs log tree commit diff stats
path: root/tests/run/tidgen.nim
blob: 0e856dc19b6950874dcc0f2ae43562c62961b93b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
discard """
  output: "3 4"
"""

import macros

# Test compile-time state in same module

var gid {.compileTime.} = 3

macro genId(invokation: expr): expr =
  result = newIntLitNode(gid)
  inc gid

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

echo Id1(), " ", Id2()