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

const C: [u32; 5] = [0; 5];

#[allow(unconditional_panic)]
fn test() -> u32 {
    C[10]
}

fn main() {
    test();
}