rust/tests/ui/numbers-arithmetic/location-add-assign-overflow.rs
2023-11-24 00:54:06 +08:00

9 lines
131 B
Rust

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