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

fn main() {
    let mut a: u8 = 0;
    a -= &1;
}