rust/tests/ui/mir/mir_indexing_oob_1.rs
2023-01-11 09:32:08 +00:00

15 lines
235 B
Rust

// 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();
}