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