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