rust/tests/ui/numbers-arithmetic/location-divide-by-zero.rs

9 lines
145 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:location-divide-by-zero.rs
2023-11-23 10:54:06 -06:00
// https://github.com/rust-lang/rust/issues/114814
fn main() {
let _ = 1 / &0;
}