Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
numbers-arithmetic
/
overflowing-neg.rs
blob: df1198053036d7ebd66d0298bf997ff78485d84a [
file
] [
log
] [
blame
]
// run-fail
// error-pattern:thread 'main' panicked at 'attempt to negate with overflow'
// ignore-emscripten no processes
// compile-flags: -C debug-assertions
#![
allow
(
arithmetic_overflow
)]
fn
main
()
{
let
_x
=
-
i8
::
MIN
;
}