* Make index out of bounds more useful by including the 'bounds'.
* fixes #9880 index out of bounds (remaining cases); revives #10228
* change err msg to: `index 3 not in 0 .. 1`
This commit is contained in:
Timothee Cour
2019-02-10 13:07:11 -08:00
committed by Andreas Rumpf
parent 8f05b34125
commit 942495611b
11 changed files with 88 additions and 36 deletions

View File

@@ -1,5 +1,5 @@
discard """
errormsg: "index out of bounds: (a: 0) <= (i: 3) <= (b: 1) "
errormsg: "index 3 not in 0 .. 1"
line: 9
"""
@@ -8,9 +8,3 @@ discard """
let a = [1,2]
echo a[3]
when false:
# TOOD: this case is not yet handled, giving: "index out of bounds"
proc fun()=
let a = @[1,2]
echo a[3]
static: fun()