Sign in
fuchsia
/
third_party
/
rust
/
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
/
.
/
tests
/
ui
/
numbers-arithmetic
/
overflowing-mul.rs
blob: 0eece5369299b2cd0ad9d5dd4510b95e0f0a6fc8 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:thread 'main' panicked
//@ error-pattern:attempt to multiply with overflow
//@ needs-subprocess
//@ compile-flags: -C debug-assertions
#![
allow
(
arithmetic_overflow
)]
fn
main
()
{
let
x
=
200u8
*
4
;
}