about summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/location-mod-assign-by-zero.rs
blob: ae62f5c26d9a4fb1c48a35c810dde49e97d4b239 (plain)
1
2
3
4
5
6
7
//@ run-fail
//@ error-pattern:location-mod-assign-by-zero.rs

fn main() {
    let mut a = 1;
    a %= &0;
}