mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
17 lines
192 B
Nim
17 lines
192 B
Nim
discard """
|
|
errormsg: "'bla' escapes its stack frame; context: 'bla'"
|
|
file: "tvarres1.nim"
|
|
line: 12
|
|
"""
|
|
|
|
var
|
|
g = 5
|
|
|
|
proc p(): var int =
|
|
var bla: int
|
|
result = bla
|
|
|
|
p() = 45
|
|
|
|
echo g
|