summaryrefslogtreecommitdiffstats
path: root/tests/ui/numbers-arithmetic/overflowing-neg-nonzero.rs
blob: dabb0d50cbb5a57453edc4f20a365518d1b459e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-fail
// error-pattern:attempt to negate with overflow
// ignore-emscripten no processes
// compile-flags: -C debug-assertions

#![allow(arithmetic_overflow)]

use std::num::NonZeroI8;

fn main() {
    let _x = -NonZeroI8::new(i8::MIN).unwrap();
}