summary refs log tree commit diff
path: root/src/test/run-fail/vec-overrun.rs
blob: 2be945f736cb7c3782806f6d17e42dc14de427b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// error-pattern:index out of bounds: the len is 1 but the index is 2


fn main() {
    let v: Vec<isize> = vec![10];
    let x: usize = 0;
    assert_eq!(v[x], 10);
    // Bounds-check panic.

    assert_eq!(v[x + 2], 20);
}