|
1 | 1 | error[E0716]: temporary value dropped while borrowed
|
2 |
| - --> $DIR/const-int-conversion.rs:4:28 |
| 2 | + --> $DIR/const-int-conversion.rs:2:28 |
3 | 3 | |
|
4 | 4 | LL | let x: &'static i32 = &(5_i32.reverse_bits());
|
5 | 5 | | ------------ ^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
10 | 10 | | - temporary value is freed at the end of this statement
|
11 | 11 |
|
12 | 12 | error[E0716]: temporary value dropped while borrowed
|
13 |
| - --> $DIR/const-int-conversion.rs:6:28 |
| 13 | + --> $DIR/const-int-conversion.rs:4:28 |
14 | 14 | |
|
15 | 15 | LL | let y: &'static i32 = &(i32::from_be_bytes([0x12, 0x34, 0x56, 0x78]));
|
16 | 16 | | ------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
21 | 21 | | - temporary value is freed at the end of this statement
|
22 | 22 |
|
23 | 23 | error[E0716]: temporary value dropped while borrowed
|
24 |
| - --> $DIR/const-int-conversion.rs:8:28 |
| 24 | + --> $DIR/const-int-conversion.rs:6:28 |
25 | 25 | |
|
26 | 26 | LL | let z: &'static i32 = &(i32::from_le_bytes([0x12, 0x34, 0x56, 0x78]));
|
27 | 27 | | ------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
32 | 32 | | - temporary value is freed at the end of this statement
|
33 | 33 |
|
34 | 34 | error[E0716]: temporary value dropped while borrowed
|
35 |
| - --> $DIR/const-int-conversion.rs:10:28 |
| 35 | + --> $DIR/const-int-conversion.rs:8:28 |
36 | 36 | |
|
37 | 37 | LL | let a: &'static i32 = &(i32::from_be(i32::from_ne_bytes([0x80, 0, 0, 0])));
|
38 | 38 | | ------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
43 | 43 | | - temporary value is freed at the end of this statement
|
44 | 44 |
|
45 | 45 | error[E0716]: temporary value dropped while borrowed
|
46 |
| - --> $DIR/const-int-conversion.rs:12:29 |
| 46 | + --> $DIR/const-int-conversion.rs:10:29 |
47 | 47 | |
|
48 | 48 | LL | let b: &'static [u8] = &(0x12_34_56_78_i32.to_be_bytes());
|
49 | 49 | | ------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
54 | 54 | | - temporary value is freed at the end of this statement
|
55 | 55 |
|
56 | 56 | error[E0716]: temporary value dropped while borrowed
|
57 |
| - --> $DIR/const-int-conversion.rs:14:29 |
| 57 | + --> $DIR/const-int-conversion.rs:12:29 |
58 | 58 | |
|
59 | 59 | LL | let c: &'static [u8] = &(0x12_34_56_78_i32.to_le_bytes());
|
60 | 60 | | ------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
65 | 65 | | - temporary value is freed at the end of this statement
|
66 | 66 |
|
67 | 67 | error[E0716]: temporary value dropped while borrowed
|
68 |
| - --> $DIR/const-int-conversion.rs:16:29 |
| 68 | + --> $DIR/const-int-conversion.rs:14:29 |
69 | 69 | |
|
70 | 70 | LL | let d: &'static [u8] = &(i32::min_value().to_be().to_ne_bytes());
|
71 | 71 | | ------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
0 commit comments