rustc/tests/ui/numbers-arithmetic/location-add-assign-overflow.rs
2024-06-14 12:43:07 +02: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;
}