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

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

8 lines
109 B
Rust
Raw Permalink Normal View History

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