]> git.lizzy.rs Git - rust.git/blob - tests/ui/cast.stderr
Auto merge of #3635 - matthiaskrgr:revert_random_state_3603, r=xfix
[rust.git] / tests / ui / cast.stderr
1 error: casting i32 to f32 causes a loss of precision (i32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
2   --> $DIR/cast.rs:20:5
3    |
4 LL |     1i32 as f32;
5    |     ^^^^^^^^^^^
6    |
7    = note: `-D clippy::cast-precision-loss` implied by `-D warnings`
8
9 error: casting i64 to f32 causes a loss of precision (i64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
10   --> $DIR/cast.rs:21:5
11    |
12 LL |     1i64 as f32;
13    |     ^^^^^^^^^^^
14
15 error: casting i64 to f64 causes a loss of precision (i64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
16   --> $DIR/cast.rs:22:5
17    |
18 LL |     1i64 as f64;
19    |     ^^^^^^^^^^^
20
21 error: casting u32 to f32 causes a loss of precision (u32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
22   --> $DIR/cast.rs:23:5
23    |
24 LL |     1u32 as f32;
25    |     ^^^^^^^^^^^
26
27 error: casting u64 to f32 causes a loss of precision (u64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
28   --> $DIR/cast.rs:24:5
29    |
30 LL |     1u64 as f32;
31    |     ^^^^^^^^^^^
32
33 error: casting u64 to f64 causes a loss of precision (u64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
34   --> $DIR/cast.rs:25:5
35    |
36 LL |     1u64 as f64;
37    |     ^^^^^^^^^^^
38
39 error: casting f32 to i32 may truncate the value
40   --> $DIR/cast.rs:27:5
41    |
42 LL |     1f32 as i32;
43    |     ^^^^^^^^^^^
44    |
45    = note: `-D clippy::cast-possible-truncation` implied by `-D warnings`
46
47 error: casting f32 to u32 may truncate the value
48   --> $DIR/cast.rs:28:5
49    |
50 LL |     1f32 as u32;
51    |     ^^^^^^^^^^^
52
53 error: casting f32 to u32 may lose the sign of the value
54   --> $DIR/cast.rs:28:5
55    |
56 LL |     1f32 as u32;
57    |     ^^^^^^^^^^^
58    |
59    = note: `-D clippy::cast-sign-loss` implied by `-D warnings`
60
61 error: casting f64 to f32 may truncate the value
62   --> $DIR/cast.rs:29:5
63    |
64 LL |     1f64 as f32;
65    |     ^^^^^^^^^^^
66
67 error: casting i32 to i8 may truncate the value
68   --> $DIR/cast.rs:30:5
69    |
70 LL |     1i32 as i8;
71    |     ^^^^^^^^^^
72
73 error: casting i32 to u8 may lose the sign of the value
74   --> $DIR/cast.rs:31:5
75    |
76 LL |     1i32 as u8;
77    |     ^^^^^^^^^^
78
79 error: casting i32 to u8 may truncate the value
80   --> $DIR/cast.rs:31:5
81    |
82 LL |     1i32 as u8;
83    |     ^^^^^^^^^^
84
85 error: casting f64 to isize may truncate the value
86   --> $DIR/cast.rs:32:5
87    |
88 LL |     1f64 as isize;
89    |     ^^^^^^^^^^^^^
90
91 error: casting f64 to usize may truncate the value
92   --> $DIR/cast.rs:33:5
93    |
94 LL |     1f64 as usize;
95    |     ^^^^^^^^^^^^^
96
97 error: casting f64 to usize may lose the sign of the value
98   --> $DIR/cast.rs:33:5
99    |
100 LL |     1f64 as usize;
101    |     ^^^^^^^^^^^^^
102
103 error: casting u8 to i8 may wrap around the value
104   --> $DIR/cast.rs:35:5
105    |
106 LL |     1u8 as i8;
107    |     ^^^^^^^^^
108    |
109    = note: `-D clippy::cast-possible-wrap` implied by `-D warnings`
110
111 error: casting u16 to i16 may wrap around the value
112   --> $DIR/cast.rs:36:5
113    |
114 LL |     1u16 as i16;
115    |     ^^^^^^^^^^^
116
117 error: casting u32 to i32 may wrap around the value
118   --> $DIR/cast.rs:37:5
119    |
120 LL |     1u32 as i32;
121    |     ^^^^^^^^^^^
122
123 error: casting u64 to i64 may wrap around the value
124   --> $DIR/cast.rs:38:5
125    |
126 LL |     1u64 as i64;
127    |     ^^^^^^^^^^^
128
129 error: casting usize to isize may wrap around the value
130   --> $DIR/cast.rs:39:5
131    |
132 LL |     1usize as isize;
133    |     ^^^^^^^^^^^^^^^
134
135 error: casting f32 to f64 may become silently lossy if types change
136   --> $DIR/cast.rs:41:5
137    |
138 LL |     1.0f32 as f64;
139    |     ^^^^^^^^^^^^^ help: try: `f64::from(1.0f32)`
140    |
141    = note: `-D clippy::cast-lossless` implied by `-D warnings`
142
143 error: casting u8 to u16 may become silently lossy if types change
144   --> $DIR/cast.rs:43:5
145    |
146 LL |     (1u8 + 1u8) as u16;
147    |     ^^^^^^^^^^^^^^^^^^ help: try: `u16::from(1u8 + 1u8)`
148
149 error: casting i32 to u32 may lose the sign of the value
150   --> $DIR/cast.rs:45:5
151    |
152 LL |     1i32 as u32;
153    |     ^^^^^^^^^^^
154
155 error: casting isize to usize may lose the sign of the value
156   --> $DIR/cast.rs:46:5
157    |
158 LL |     1isize as usize;
159    |     ^^^^^^^^^^^^^^^
160
161 error: casting to the same type is unnecessary (`i32` -> `i32`)
162   --> $DIR/cast.rs:49:5
163    |
164 LL |     1i32 as i32;
165    |     ^^^^^^^^^^^
166    |
167    = note: `-D clippy::unnecessary-cast` implied by `-D warnings`
168
169 error: casting to the same type is unnecessary (`f32` -> `f32`)
170   --> $DIR/cast.rs:50:5
171    |
172 LL |     1f32 as f32;
173    |     ^^^^^^^^^^^
174
175 error: casting to the same type is unnecessary (`bool` -> `bool`)
176   --> $DIR/cast.rs:51:5
177    |
178 LL |     false as bool;
179    |     ^^^^^^^^^^^^^
180
181 error: aborting due to 28 previous errors
182