]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/cast_size_32bit.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / cast_size_32bit.stderr
CommitLineData
f20569fa
XL
1error: casting `isize` to `i8` may truncate the value
2 --> $DIR/cast_size_32bit.rs:12:5
3 |
4LL | 1isize as i8;
5 | ^^^^^^^^^^^^
6 |
7 = note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
8
9error: casting `isize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`isize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)
10 --> $DIR/cast_size_32bit.rs:15:5
11 |
12LL | x0 as f64;
13 | ^^^^^^^^^
14 |
15 = note: `-D clippy::cast-precision-loss` implied by `-D warnings`
16
17error: casting `isize` to `f64` may become silently lossy if you later change the type
18 --> $DIR/cast_size_32bit.rs:15:5
19 |
20LL | x0 as f64;
21 | ^^^^^^^^^ help: try: `f64::from(x0)`
22 |
23 = note: `-D clippy::cast-lossless` implied by `-D warnings`
24
25error: casting `usize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`usize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)
26 --> $DIR/cast_size_32bit.rs:16:5
27 |
28LL | x1 as f64;
29 | ^^^^^^^^^
30
31error: casting `usize` to `f64` may become silently lossy if you later change the type
32 --> $DIR/cast_size_32bit.rs:16:5
33 |
34LL | x1 as f64;
35 | ^^^^^^^^^ help: try: `f64::from(x1)`
36
37error: casting `isize` to `f32` causes a loss of precision (`isize` is 32 or 64 bits wide, but `f32`'s mantissa is only 23 bits wide)
38 --> $DIR/cast_size_32bit.rs:17:5
39 |
40LL | x0 as f32;
41 | ^^^^^^^^^
42
43error: casting `usize` to `f32` causes a loss of precision (`usize` is 32 or 64 bits wide, but `f32`'s mantissa is only 23 bits wide)
44 --> $DIR/cast_size_32bit.rs:18:5
45 |
46LL | x1 as f32;
47 | ^^^^^^^^^
48
49error: casting `isize` to `i32` may truncate the value on targets with 64-bit wide pointers
50 --> $DIR/cast_size_32bit.rs:19:5
51 |
52LL | 1isize as i32;
53 | ^^^^^^^^^^^^^
54
55error: casting `isize` to `u32` may truncate the value on targets with 64-bit wide pointers
56 --> $DIR/cast_size_32bit.rs:20:5
57 |
58LL | 1isize as u32;
59 | ^^^^^^^^^^^^^
60
61error: casting `usize` to `u32` may truncate the value on targets with 64-bit wide pointers
62 --> $DIR/cast_size_32bit.rs:21:5
63 |
64LL | 1usize as u32;
65 | ^^^^^^^^^^^^^
66
67error: casting `usize` to `i32` may truncate the value on targets with 64-bit wide pointers
68 --> $DIR/cast_size_32bit.rs:22:5
69 |
70LL | 1usize as i32;
71 | ^^^^^^^^^^^^^
72
73error: casting `usize` to `i32` may wrap around the value on targets with 32-bit wide pointers
74 --> $DIR/cast_size_32bit.rs:22:5
75 |
76LL | 1usize as i32;
77 | ^^^^^^^^^^^^^
78 |
79 = note: `-D clippy::cast-possible-wrap` implied by `-D warnings`
80
81error: casting `i64` to `isize` may truncate the value on targets with 32-bit wide pointers
82 --> $DIR/cast_size_32bit.rs:24:5
83 |
84LL | 1i64 as isize;
85 | ^^^^^^^^^^^^^
86
87error: casting `i64` to `usize` may truncate the value on targets with 32-bit wide pointers
88 --> $DIR/cast_size_32bit.rs:25:5
89 |
90LL | 1i64 as usize;
91 | ^^^^^^^^^^^^^
92
93error: casting `u64` to `isize` may truncate the value on targets with 32-bit wide pointers
94 --> $DIR/cast_size_32bit.rs:26:5
95 |
96LL | 1u64 as isize;
97 | ^^^^^^^^^^^^^
98
99error: casting `u64` to `isize` may wrap around the value on targets with 64-bit wide pointers
100 --> $DIR/cast_size_32bit.rs:26:5
101 |
102LL | 1u64 as isize;
103 | ^^^^^^^^^^^^^
104
105error: casting `u64` to `usize` may truncate the value on targets with 32-bit wide pointers
106 --> $DIR/cast_size_32bit.rs:27:5
107 |
108LL | 1u64 as usize;
109 | ^^^^^^^^^^^^^
110
111error: casting `u32` to `isize` may wrap around the value on targets with 32-bit wide pointers
112 --> $DIR/cast_size_32bit.rs:28:5
113 |
114LL | 1u32 as isize;
115 | ^^^^^^^^^^^^^
116
117error: casting `i32` to `f32` causes a loss of precision (`i32` is 32 bits wide, but `f32`'s mantissa is only 23 bits wide)
118 --> $DIR/cast_size_32bit.rs:33:5
119 |
120LL | 999_999_999 as f32;
121 | ^^^^^^^^^^^^^^^^^^
122
123error: casting integer literal to `f64` is unnecessary
124 --> $DIR/cast_size_32bit.rs:34:5
125 |
126LL | 3_999_999_999usize as f64;
127 | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `3_999_999_999_f64`
128 |
129 = note: `-D clippy::unnecessary-cast` implied by `-D warnings`
130
131error: aborting due to 20 previous errors
132