mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-02 14:07:10 +00:00
7 lines
117 B
Rust
7 lines
117 B
Rust
//@ build-fail
|
|
|
|
fn main() {
|
|
let array = [std::env::args().len()];
|
|
array[1]; //~ ERROR operation will panic
|
|
}
|