]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-int-rotate.stderr
Rollup merge of #107023 - scottmcm:stop-shouting, r=Nilstrieb
[rust.git] / tests / ui / consts / const-int-rotate.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-int-rotate.rs:2:28
3    |
4 LL |     let x: &'static i32 = &(5_i32.rotate_left(3));
5    |            ------------    ^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
6    |            |
7    |            type annotation requires that borrow lasts for `'static`
8 ...
9 LL | }
10    | - temporary value is freed at the end of this statement
11
12 error[E0716]: temporary value dropped while borrowed
13   --> $DIR/const-int-rotate.rs:4:28
14    |
15 LL |     let y: &'static i32 = &(5_i32.rotate_right(3));
16    |            ------------    ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
17    |            |
18    |            type annotation requires that borrow lasts for `'static`
19 LL |
20 LL | }
21    | - temporary value is freed at the end of this statement
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0716`.