rust/tests/ui/mir/mir_indexing_oob_2.rs

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

15 lines
244 B
Rust
Raw Normal View History

2020-04-16 01:50:32 -05:00
// run-fail
2015-12-21 10:58:18 -06:00
// error-pattern:index out of bounds: the len is 5 but the index is 10
2020-05-07 10:39:02 -05:00
// ignore-emscripten no processes
2015-12-21 10:58:18 -06:00
const C: &'static [u8; 5] = b"hello";
2020-02-18 15:49:47 -06:00
#[allow(unconditional_panic)]
2015-12-21 10:58:18 -06:00
fn test() -> u8 {
C[10]
}
fn main() {
test();
}