mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
17 lines
157 B
Nim
17 lines
157 B
Nim
discard """
|
|
file: "tvarres2.nim"
|
|
line: 11
|
|
errormsg: "expression has no address"
|
|
"""
|
|
|
|
var
|
|
g = 5
|
|
|
|
proc p(): var int =
|
|
result = 89
|
|
|
|
p() = 45
|
|
|
|
echo g
|
|
|