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