]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/cast-rfc0401.stderr
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / test / ui / mismatched_types / cast-rfc0401.stderr
1 error[E0606]: casting `*const U` as `*const V` is invalid
2   --> $DIR/cast-rfc0401.rs:3:5
3    |
4 LL |     u as *const V
5    |     ^^^^^^^^^^^^^
6    |
7    = note: vtable kinds may not match
8
9 error[E0606]: casting `*const U` as `*const str` is invalid
10   --> $DIR/cast-rfc0401.rs:8:5
11    |
12 LL |     u as *const str
13    |     ^^^^^^^^^^^^^^^
14    |
15    = note: vtable kinds may not match
16
17 error[E0609]: no field `f` on type `fn() {main}`
18   --> $DIR/cast-rfc0401.rs:65:18
19    |
20 LL |     let _ = main.f as *const u32;
21    |                  ^
22
23 error[E0605]: non-primitive cast: `*const u8` as `&u8`
24   --> $DIR/cast-rfc0401.rs:29:13
25    |
26 LL |     let _ = v as &u8;
27    |             ^^^^^^^^ invalid cast
28    |
29 help: consider borrowing the value
30    |
31 LL -     let _ = v as &u8;
32 LL +     let _ = &*v;
33    | 
34
35 error[E0605]: non-primitive cast: `*const u8` as `E`
36   --> $DIR/cast-rfc0401.rs:30:13
37    |
38 LL |     let _ = v as E;
39    |             ^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
40
41 error[E0605]: non-primitive cast: `*const u8` as `fn()`
42   --> $DIR/cast-rfc0401.rs:31:13
43    |
44 LL |     let _ = v as fn();
45    |             ^^^^^^^^^ invalid cast
46
47 error[E0605]: non-primitive cast: `*const u8` as `(u32,)`
48   --> $DIR/cast-rfc0401.rs:32:13
49    |
50 LL |     let _ = v as (u32,);
51    |             ^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
52
53 error[E0605]: non-primitive cast: `Option<&*const u8>` as `*const u8`
54   --> $DIR/cast-rfc0401.rs:33:13
55    |
56 LL |     let _ = Some(&v) as *const u8;
57    |             ^^^^^^^^^^^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
58
59 error[E0606]: casting `*const u8` as `f32` is invalid
60   --> $DIR/cast-rfc0401.rs:35:13
61    |
62 LL |     let _ = v as f32;
63    |             ^^^^^^^^
64
65 error[E0606]: casting `fn() {main}` as `f64` is invalid
66   --> $DIR/cast-rfc0401.rs:36:13
67    |
68 LL |     let _ = main as f64;
69    |             ^^^^^^^^^^^
70
71 error[E0606]: casting `&*const u8` as `usize` is invalid
72   --> $DIR/cast-rfc0401.rs:37:13
73    |
74 LL |     let _ = &v as usize;
75    |             ^^^^^^^^^^^
76    |
77    = help: cast through a raw pointer first
78
79 error[E0606]: casting `f32` as `*const u8` is invalid
80   --> $DIR/cast-rfc0401.rs:38:13
81    |
82 LL |     let _ = f as *const u8;
83    |             ^^^^^^^^^^^^^^
84
85 error[E0054]: cannot cast as `bool`
86   --> $DIR/cast-rfc0401.rs:39:13
87    |
88 LL |     let _ = 3_i32 as bool;
89    |             ^^^^^^^^^^^^^ help: compare with zero instead: `3_i32 != 0`
90
91 error[E0054]: cannot cast as `bool`
92   --> $DIR/cast-rfc0401.rs:40:13
93    |
94 LL |     let _ = E::A as bool;
95    |             ^^^^^^^^^^^^ unsupported cast
96
97 error[E0604]: only `u8` can be cast as `char`, not `u32`
98   --> $DIR/cast-rfc0401.rs:41:13
99    |
100 LL |     let _ = 0x61u32 as char;
101    |             ^^^^^^^^^^^^^^^ invalid cast
102    |
103 help: try `char::from_u32` instead
104   --> $DIR/cast-rfc0401.rs:41:13
105    |
106 LL |     let _ = 0x61u32 as char;
107    |             ^^^^^^^^^^^^^^^
108
109 error[E0606]: casting `bool` as `f32` is invalid
110   --> $DIR/cast-rfc0401.rs:43:13
111    |
112 LL |     let _ = false as f32;
113    |             ^^^^^^^^^^^^
114    |
115    = help: cast through an integer first
116
117 error[E0606]: casting `E` as `f32` is invalid
118   --> $DIR/cast-rfc0401.rs:44:13
119    |
120 LL |     let _ = E::A as f32;
121    |             ^^^^^^^^^^^
122    |
123    = help: cast through an integer first
124
125 error[E0606]: casting `char` as `f32` is invalid
126   --> $DIR/cast-rfc0401.rs:45:13
127    |
128 LL |     let _ = 'a' as f32;
129    |             ^^^^^^^^^^
130    |
131    = help: cast through an integer first
132
133 error[E0606]: casting `bool` as `*const u8` is invalid
134   --> $DIR/cast-rfc0401.rs:47:13
135    |
136 LL |     let _ = false as *const u8;
137    |             ^^^^^^^^^^^^^^^^^^
138
139 error[E0606]: casting `E` as `*const u8` is invalid
140   --> $DIR/cast-rfc0401.rs:48:13
141    |
142 LL |     let _ = E::A as *const u8;
143    |             ^^^^^^^^^^^^^^^^^
144
145 error[E0606]: casting `char` as `*const u8` is invalid
146   --> $DIR/cast-rfc0401.rs:49:13
147    |
148 LL |     let _ = 'a' as *const u8;
149    |             ^^^^^^^^^^^^^^^^
150
151 error[E0606]: casting `usize` as `*const [u8]` is invalid
152   --> $DIR/cast-rfc0401.rs:51:13
153    |
154 LL |     let _ = 42usize as *const [u8];
155    |             ^^^^^^^^^^^^^^^^^^^^^^
156
157 error[E0607]: cannot cast thin pointer `*const u8` to fat pointer `*const [u8]`
158   --> $DIR/cast-rfc0401.rs:52:13
159    |
160 LL |     let _ = v as *const [u8];
161    |             ^^^^^^^^^^^^^^^^
162
163 error[E0606]: casting `&dyn Foo` as `*const str` is invalid
164   --> $DIR/cast-rfc0401.rs:54:13
165    |
166 LL |     let _ = foo as *const str;
167    |             ^^^^^^^^^^^^^^^^^
168
169 error[E0606]: casting `&dyn Foo` as `*mut str` is invalid
170   --> $DIR/cast-rfc0401.rs:55:13
171    |
172 LL |     let _ = foo as *mut str;
173    |             ^^^^^^^^^^^^^^^
174
175 error[E0606]: casting `fn() {main}` as `*mut str` is invalid
176   --> $DIR/cast-rfc0401.rs:56:13
177    |
178 LL |     let _ = main as *mut str;
179    |             ^^^^^^^^^^^^^^^^
180
181 error[E0606]: casting `&f32` as `*mut f32` is invalid
182   --> $DIR/cast-rfc0401.rs:57:13
183    |
184 LL |     let _ = &f as *mut f32;
185    |             ^^^^^^^^^^^^^^
186
187 error[E0606]: casting `&f32` as `*const f64` is invalid
188   --> $DIR/cast-rfc0401.rs:58:13
189    |
190 LL |     let _ = &f as *const f64;
191    |             ^^^^^^^^^^^^^^^^
192
193 error[E0606]: casting `*const [i8]` as `usize` is invalid
194   --> $DIR/cast-rfc0401.rs:59:13
195    |
196 LL |     let _ = fat_sv as usize;
197    |             ^^^^^^^^^^^^^^^
198    |
199    = help: cast through a thin pointer first
200
201 error[E0606]: casting `*const dyn Foo` as `*const [u16]` is invalid
202   --> $DIR/cast-rfc0401.rs:68:13
203    |
204 LL |     let _ = cf as *const [u16];
205    |             ^^^^^^^^^^^^^^^^^^
206    |
207    = note: vtable kinds may not match
208
209 error[E0606]: casting `*const dyn Foo` as `*const dyn Bar` is invalid
210   --> $DIR/cast-rfc0401.rs:69:13
211    |
212 LL |     let _ = cf as *const dyn Bar;
213    |             ^^^^^^^^^^^^^^^^^^^^
214    |
215    = note: vtable kinds may not match
216
217 error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
218   --> $DIR/cast-rfc0401.rs:53:13
219    |
220 LL |     let _ = fat_v as *const dyn Foo;
221    |             ^^^^^ doesn't have a size known at compile-time
222    |
223    = help: the trait `Sized` is not implemented for `[u8]`
224    = note: required for the cast to the object type `dyn Foo`
225
226 error[E0277]: the size for values of type `str` cannot be known at compilation time
227   --> $DIR/cast-rfc0401.rs:62:13
228    |
229 LL |     let _ = a as *const dyn Foo;
230    |             ^ doesn't have a size known at compile-time
231    |
232    = help: the trait `Sized` is not implemented for `str`
233    = note: required for the cast to the object type `dyn Foo`
234
235 error[E0606]: casting `&{float}` as `f32` is invalid
236   --> $DIR/cast-rfc0401.rs:71:30
237    |
238 LL |     vec![0.0].iter().map(|s| s as f32).collect::<Vec<f32>>();
239    |                              -^^^^^^^
240    |                              |
241    |                              cannot cast `&{float}` as `f32`
242    |                              help: dereference the expression: `*s`
243
244 error: aborting due to 34 previous errors
245
246 Some errors have detailed explanations: E0054, E0277, E0604, E0605, E0606, E0607, E0609.
247 For more information about an error, try `rustc --explain E0054`.