rust/tests/ui/mir/mir_indexing_oob_1.rs

15 lines
235 B
Rust
Raw Normal View History

2020-04-16 15:50:32 +09:00
// run-fail
2015-12-21 18:58:18 +02:00
// error-pattern:index out of bounds: the len is 5 but the index is 10
2020-05-08 00:39:02 +09:00
// ignore-emscripten no processes
2015-12-21 18:58:18 +02:00
const C: [u32; 5] = [0; 5];
2020-02-18 22:49:47 +01:00
#[allow(unconditional_panic)]
2015-12-21 18:58:18 +02:00
fn test() -> u32 {
C[10]
}
fn main() {
test();
}