mirror of https://github.com/rust-lang/rust.git
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
|
|
}
|