mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 00:46:59 +00:00
9 lines
365 B
Rust
9 lines
365 B
Rust
fn main() {
|
|
let x: &'static (i32, bool) = &(5_i32.overflowing_add(3));
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let y: &'static (i32, bool) = &(5_i32.overflowing_sub(3));
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let z: &'static (i32, bool) = &(5_i32.overflowing_mul(3));
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
}
|