rust/tests/ui/consts/const-eval/index_out_of_bounds_propagated.rs
2024-02-16 20:02:50 +00:00

7 lines
117 B
Rust

//@ build-fail
fn main() {
let array = [std::env::args().len()];
array[1]; //~ ERROR operation will panic
}