rustc/tests/ui/numbers-arithmetic/location-sub-assign-overflow.rs
2024-06-14 12:43:07 +02:00

9 lines
129 B
Rust

// run-fail
// ignore-wasm32
// error-pattern:location-sub-assign-overflow.rs
fn main() {
let mut a: u8 = 0;
a -= &1;
}