mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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
|
|
}
|