rust/tests/ui/numbers-arithmetic/overflowing-neg-nonzero.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
282 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:attempt to negate with overflow
//@ ignore-emscripten no processes
//@ compile-flags: -C debug-assertions
#![allow(arithmetic_overflow)]
2024-02-22 13:59:52 +00:00
#![feature(generic_nonzero)]
2024-02-22 13:59:52 +00:00
use std::num::NonZero;
fn main() {
2024-02-22 13:59:52 +00:00
let _x = -NonZero::new(i8::MIN).unwrap();
}