Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
numbers-arithmetic
/
location-sub-assign-overflow.rs
blob: 13f074b0ffef37e0de543665187e16db021c68c6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-fail
//@ error-pattern:location-sub-assign-overflow.rs
fn
main
()
{
let
mut
a
:
u8
=
0
;
a
-=
&
1
;
}