Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
numbers-arithmetic
/
location-mul-overflow.rs
blob: 0a00d3beaa78605a4848cc3e3c8fd2160b2fc566 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:location-mul-overflow.rs
fn
main
()
{
let
_
:
u8
=
255
*
&
2
;
}