Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
tests
/
ui
/
numbers-arithmetic
/
location-add-assign-overflow.rs
blob: 8014bae2889c4032b525b16296c1d432a0bd5532 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:location-add-assign-overflow.rs
fn
main
()
{
let
mut
a
:
u8
=
255
;
a
+=
&
1
;
}