summary refs log tree commit diff stats
path: root/tests/stdlib/tstdlib_various.nim
Commit message (Expand)AuthorAgeFilesLines
* megatest can be executedArne Döring2018-12-111-1/+1
* More descriptive names of test files (#9531)Miran2018-10-291-0/+247
iv>













                             
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()