mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-09 06:23:25 +00:00
9 lines
89 B
Nim
9 lines
89 B
Nim
# #12671
|
|
|
|
proc foo =
|
|
var x: seq[int]
|
|
doAssertRaises(IndexError):
|
|
inc x[0]
|
|
|
|
foo()
|