mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
8 lines
115 B
Rust
8 lines
115 B
Rust
//@ run-fail
|
|
//@ ignore-wasm32
|
|
//@ error-pattern:location-add-overflow.rs
|
|
|
|
fn main() {
|
|
let _: u8 = 255 + &1;
|
|
}
|