mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 18:32:11 +00:00
14 lines
168 B
Nim
14 lines
168 B
Nim
discard """
|
|
output: '''hi'''
|
|
"""
|
|
|
|
# bug #4551
|
|
|
|
proc foo() =
|
|
let arr = ["hi"]
|
|
for i, v in arr:
|
|
let bar = proc =
|
|
echo v
|
|
bar()
|
|
foo()
|