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

8 lines
105 B
Rust
Raw Normal View History

2023-11-24 00:54:06 +08:00
// run-fail
// ignore-wasm32
// error-pattern:location-mod-by-zero.rs
fn main() {
let _ = 1 % &0;
}