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

const fn test(x: usize) -> i32 {
    [42;5][x]
}

fn main () {
    let _ = test(5);
}