rust/tests/ui/numbers-arithmetic/location-mod-by-zero.rs
2024-02-16 20:02:50 +00:00

8 lines
108 B
Rust

//@ run-fail
//@ ignore-wasm32
//@ error-pattern:location-mod-by-zero.rs
fn main() {
let _ = 1 % &0;
}