rust/tests/ui/precondition-checks/out-of-bounds-get-unchecked.rs

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

13 lines
271 B
Rust
Raw Normal View History

2024-02-07 09:30:11 -06:00
//@ run-fail
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=yes
//@ error-pattern: slice::get_unchecked requires
2024-02-07 09:30:11 -06:00
//@ ignore-debug
//@ ignore-wasm32-bare no panic messages
fn main() {
unsafe {
let sli: &[u8] = &[0];
sli.get_unchecked(1);
}
}