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