summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mir/mir_indexing_oob_1.rs
blob: 6d769b6b23a847cd77f10111fb49680103d62131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-fail
// error-pattern:index out of bounds: the len is 5 but the index is 10
// ignore-emscripten no processes

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

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

fn main() {
    test();
}