summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-int-sign.rs
blob: c3111ddf56ca23b8460c96bbfed20dfce483326b (plain)
1
2
3
4
5
6
fn main() {
    let x: &'static bool = &(5_i32.is_negative());
    //~^ ERROR temporary value dropped while borrowed
    let y: &'static bool = &(5_i32.is_positive());
    //~^ ERROR temporary value dropped while borrowed
}