blob: cd74c9990995e8273b0303850a95957369488010 [file] [log] [blame]
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
}