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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
90 B
Rust
Raw Normal View History

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