DEBSOURCES
Skip Quicknav
sources / nim / 2.2.0-1 / tests / js / t12672.nim
123456789101112
discard """ output: "" """ proc foo = var x: seq[seq[int]] for row in x.mitems: let i = 1 echo row inc row[i-1] foo()