2020-04-16 01:50:32 -05:00
|
|
|
// run-fail
|
2012-09-29 06:34:11 -05:00
|
|
|
// error-pattern:index out of bounds: the len is 1 but the index is 2
|
2020-05-07 10:39:02 -05:00
|
|
|
// ignore-emscripten no processes
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
fn main() {
|
2016-05-26 21:39:36 -05:00
|
|
|
let v: Vec<isize> = vec![10];
|
2015-03-25 19:06:52 -05:00
|
|
|
let x: usize = 0;
|
2014-10-15 01:05:01 -05:00
|
|
|
assert_eq!(v[x], 10);
|
2014-10-09 14:17:22 -05:00
|
|
|
// Bounds-check panic.
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2014-10-15 01:05:01 -05:00
|
|
|
assert_eq!(v[x + 2], 20);
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|