rust/tests/ui/numbers-arithmetic/location-divide-assign-by-zero.rs
2023-11-24 00:54:06 +08:00

9 lines
127 B
Rust

// run-fail
// ignore-wasm32
// error-pattern:location-divide-assign-by-zero.rs
fn main() {
let mut a = 1;
a /= &0;
}