I think they mean a one-off constant index should never check.
let arr = [1, 2, 3, 4];
// Will not compile a bound check
let x = arr [3];
let v = vec! [1, 2, 3, 4];
// Imagine other code separates these two lines
// Might compile a bound check
let x = v [3];