mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
282 B
Rust
13 lines
282 B
Rust
//@ run-fail
|
|
//@ error-pattern:attempt to negate with overflow
|
|
//@ ignore-emscripten no processes
|
|
//@ compile-flags: -C debug-assertions
|
|
#![allow(arithmetic_overflow)]
|
|
#![feature(generic_nonzero)]
|
|
|
|
use std::num::NonZero;
|
|
|
|
fn main() {
|
|
let _x = -NonZero::new(i8::MIN).unwrap();
|
|
}
|