mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:09:20 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
// build-pass
|
|
// ignore-pass (test emits codegen-time warnings and verifies that they are not errors)
|
|
|
|
#![warn(unconditional_panic)]
|
|
|
|
fn main() {
|
|
&{ [1, 2, 3][4] };
|
|
//~^ WARN operation will panic
|
|
}
|