summary refs log tree commit diff stats
path: root/tests/global/t21896.nim
blob: c7765c4dd196bf05f01ba7b7ecf619b8f266a7da (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  errormsg: "cannot assign local to global variable"
  line: 7
"""

proc example(a:int) =
  let b {.global.} = a

example(1)