]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-int-sign.nll.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / consts / const-int-sign.nll.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-int-sign.rs:12:29
3    |
4 LL |     let x: &'static bool = &(5_i32.is_negative()); //~ ERROR does not live long enough
5    |                             ^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
6 LL |     let y: &'static bool = &(5_i32.is_positive()); //~ ERROR does not live long enough
7 LL | }
8    | - temporary value is freed at the end of this statement
9    |
10    = note: borrowed value must be valid for the static lifetime...
11
12 error[E0716]: temporary value dropped while borrowed
13   --> $DIR/const-int-sign.rs:13:29
14    |
15 LL |     let y: &'static bool = &(5_i32.is_positive()); //~ ERROR does not live long enough
16    |                             ^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
17 LL | }
18    | - temporary value is freed at the end of this statement
19    |
20    = note: borrowed value must be valid for the static lifetime...
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0716`.