Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
numbers-arithmetic
/
location-mod-by-zero.rs
blob: 6a2e1b158bf7f8bd1c4b269ab1c51dc463ccfff0 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:location-mod-by-zero.rs
fn
main
()
{
let
_
=
1
%
&
0
;
}