Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
numbers-arithmetic
/
location-divide-by-zero.rs
blob: 88c1b51c1bb4e5a605b7c538695829002da759ac [
file
]
//@ run-fail
//@ error-pattern:location-divide-by-zero.rs
// https://github.com/rust-lang/rust/issues/114814
fn
main
()
{
let
_
=
1
/
&
0
;
}