blob: 8aa0d04e500c7f029ade1efa0a85c058cbc64fa2 [file] [log] [blame] [edit]
//@ run-fail
//@ error-pattern:attempt to negate with overflow
//@ ignore-emscripten no processes
//@ compile-flags: -C debug-assertions
#![allow(arithmetic_overflow)]
use std::num::NonZero;
fn main() {
let _x = -NonZero::new(i8::MIN).unwrap();
}