mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
7 lines
175 B
Rust
7 lines
175 B
Rust
// build-fail
|
|
|
|
fn main() {
|
|
let xs: [i32; 5] = [1, 2, 3, 4, 5];
|
|
let _ = &xs;
|
|
let _ = xs[7]; //~ ERROR: this operation will panic at runtime [unconditional_panic]
|
|
}
|