]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-int-rotate.nll.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / consts / const-int-rotate.nll.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 which is freed while still in use
6 | |
7 | type annotation requires that borrow lasts for `'static`
8 LL | let y: &'static i32 = &(5_i32.rotate_right(3));
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:3:28
14 |
15 LL | let y: &'static i32 = &(5_i32.rotate_right(3));
16 | ------------ ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
17 | |
18 | type annotation requires that borrow lasts for `'static`
19 LL | }
20 | - temporary value is freed at the end of this statement
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0716`.