rust/tests/ui/consts/const-int-sign.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
224 B
Rust
Raw Normal View History

2018-09-01 13:05:55 +00:00
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
2018-09-01 13:05:55 +00:00
}