1 error[E0716]: temporary value dropped while borrowed
2 --> $DIR/const-int-sign.rs:2:29
4 LL | let x: &'static bool = &(5_i32.is_negative());
5 | ------------- ^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
7 | type annotation requires that borrow lasts for `'static`
10 | - temporary value is freed at the end of this statement
12 error[E0716]: temporary value dropped while borrowed
13 --> $DIR/const-int-sign.rs:4:29
15 LL | let y: &'static bool = &(5_i32.is_positive());
16 | ------------- ^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
18 | type annotation requires that borrow lasts for `'static`
21 | - temporary value is freed at the end of this statement
23 error: aborting due to 2 previous errors
25 For more information about this error, try `rustc --explain E0716`.