mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
8 lines
175 B
Rust
8 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]
|
|
}
|