rust/src/test/ui/consts/const-int-sign.rs
2019-04-22 08:40:08 +01:00

6 lines
224 B
Rust

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
}