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