Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
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
;
}