rust/tests/ui/numbers-arithmetic/location-add-overflow.rs
2024-02-16 20:02:50 +00:00

8 lines
115 B
Rust

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