]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-int-wrapping.stderr
Rollup merge of #106962 - compiler-errors:use-sugg-span, r=oli-obk
[rust.git] / tests / ui / consts / const-int-wrapping.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-int-wrapping.rs:2:28
3    |
4 LL |     let x: &'static i32 = &(5_i32.wrapping_add(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-wrapping.rs:4:28
14    |
15 LL |     let y: &'static i32 = &(5_i32.wrapping_sub(3));
16    |            ------------    ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
17    |            |
18    |            type annotation requires that borrow lasts for `'static`
19 ...
20 LL | }
21    | - temporary value is freed at the end of this statement
22
23 error[E0716]: temporary value dropped while borrowed
24   --> $DIR/const-int-wrapping.rs:6:28
25    |
26 LL |     let z: &'static i32 = &(5_i32.wrapping_mul(3));
27    |            ------------    ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
28    |            |
29    |            type annotation requires that borrow lasts for `'static`
30 ...
31 LL | }
32    | - temporary value is freed at the end of this statement
33
34 error[E0716]: temporary value dropped while borrowed
35   --> $DIR/const-int-wrapping.rs:8:28
36    |
37 LL |     let a: &'static i32 = &(5_i32.wrapping_shl(3));
38    |            ------------    ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
39    |            |
40    |            type annotation requires that borrow lasts for `'static`
41 ...
42 LL | }
43    | - temporary value is freed at the end of this statement
44
45 error[E0716]: temporary value dropped while borrowed
46   --> $DIR/const-int-wrapping.rs:10:28
47    |
48 LL |     let b: &'static i32 = &(5_i32.wrapping_shr(3));
49    |            ------------    ^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
50    |            |
51    |            type annotation requires that borrow lasts for `'static`
52 LL |
53 LL | }
54    | - temporary value is freed at the end of this statement
55
56 error: aborting due to 5 previous errors
57
58 For more information about this error, try `rustc --explain E0716`.