summary refs log tree commit diff stats
path: root/tests/constr/a_module.nim
blob: 1d3f4848c3c8115fa304bdde0c0ee2c303788fae (plain) (blame)
1
2
3
4
5
6
# a.nim
{.push stackTrace: off.}
proc foo*(): int =
  var a {.global.} = 0
  result = a
{.pop.}