mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
193 B
Nim
15 lines
193 B
Nim
discard """
|
|
cmd: "nim c --gc:arc $file"
|
|
action: "compile"
|
|
"""
|
|
|
|
# bug #13269
|
|
|
|
import posix
|
|
proc foo*() =
|
|
var last = newSeq[Stat]()
|
|
var next = last
|
|
for i in 0..3:
|
|
last = next
|
|
foo()
|