temptyseq.nim 90 B

123456789
  1. # #12671
  2. proc foo =
  3. var x: seq[int]
  4. doAssertRaises(IndexDefect):
  5. inc x[0]
  6. foo()