rust/tests/ui/array-slice-vec/bounds-check-no-overflow.rs
2025-01-23 20:51:29 +08:00

11 lines
180 B
Rust

//@ run-fail
//@ error-pattern:index out of bounds
//@ needs-subprocess
use std::mem::size_of;
fn main() {
let xs = [1, 2, 3];
xs[usize::MAX / size_of::<isize>() + 1];
}