mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 04:57:35 +00:00
12 lines
239 B
Rust
12 lines
239 B
Rust
//@ run-fail
|
|
//@ error-pattern:attempt to negate with overflow
|
|
//@ needs-subprocess
|
|
//@ compile-flags: -C debug-assertions
|
|
#![allow(arithmetic_overflow)]
|
|
|
|
use std::num::NonZero;
|
|
|
|
fn main() {
|
|
let _x = -NonZero::new(i8::MIN).unwrap();
|
|
}
|