rust/tests/ui/consts/const-eval/index_out_of_bounds_propagated.rs
2023-01-11 09:32:08 +00:00

7 lines
116 B
Rust

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