]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-int-rotate.nll.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / consts / const-int-rotate.nll.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-int-rotate.rs:12:28
3    |
4 LL |     let x: &'static i32 = &(5_i32.rotate_left(3)); //~ ERROR does not live long enough
5    |                            ^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
6 LL |     let y: &'static i32 = &(5_i32.rotate_right(3)); //~ 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-rotate.rs:13:28
14    |
15 LL |     let y: &'static i32 = &(5_i32.rotate_right(3)); //~ 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`.