Files
Nim/tests/global/tglobal2.nim
2023-06-08 13:06:47 +02:00

10 lines
129 B
Nim

# b.nim
import a_module
doAssert foo() == 0
proc hello(x: type) =
var s {.global.} = default(x)
doAssert s == 0
hello(int)