summary refs log blame commit diff stats
path: root/tests/js/t12672.nim
blob: a658fbcbe60e4eb3ef6aface52765a8b78f10fb9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                      
discard """
  output: ""
"""

proc foo =
  var x: seq[seq[int]]
  for row in x.mitems:
    let i = 1
    echo row
    inc row[i-1]

foo()