mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-09 05:14:20 +00:00
fixes explicit globals in macros (#21502)
(cherry picked from commit b2c1dcbbc9)
This commit is contained in:
@@ -643,3 +643,16 @@ const b = block:
|
||||
|
||||
doAssert a == @[@[0, 1, 2], @[0, 1, 2], @[0, 1, 2]]
|
||||
doAssert b == @[@[0, 1, 2], @[0, 1, 2], @[0, 1, 2]]
|
||||
|
||||
macro m1(s: string): int =
|
||||
var ProcID {.global, compileTime.}: int
|
||||
inc(ProcID)
|
||||
result = newLit(ProcID)
|
||||
|
||||
proc macroGlobal =
|
||||
doAssert m1("Macro argument") == 1
|
||||
doAssert m1("Macro argument") == 2
|
||||
doAssert m1("Macro argument") == 3
|
||||
|
||||
static: macroGlobal()
|
||||
macroGlobal()
|
||||
|
||||
Reference in New Issue
Block a user