Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
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
;
}