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

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