mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-13 06:43:52 +00:00
10 lines
137 B
Nim
10 lines
137 B
Nim
discard """
|
|
errormsg: "cannot assign local to global variable"
|
|
line: 7
|
|
"""
|
|
|
|
proc example(a:int) =
|
|
let b {.global.} = a
|
|
|
|
example(1)
|