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