summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-int-overflowing.rs
blob: cd74c9990995e8273b0303850a95957369488010 (plain)
1
2
3
4
5
6
7
8
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
}