rust/tests/ui/mir/mir_indexing_oob_1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
224 B
Rust
Raw Permalink Normal View History

2020-04-16 06:50:32 +00:00
//@ run-fail
2015-12-21 16:58:18 +00:00
//@ error-pattern:index out of bounds: the len is 5 but the index is 10
//@ needs-subprocess
2015-12-21 16:58:18 +00:00
const C: [u32; 5] = [0; 5];
2020-02-18 21:49:47 +00:00
#[allow(unconditional_panic)]
2015-12-21 16:58:18 +00:00
fn test() -> u32 {
C[10]
}
fn main() {
test();
}