2020-09-02 07:40:56 +00:00
|
|
|
error[E0605]: non-primitive cast: `u8` as `Vec<u8>`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0605.rs:3:5
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x as Vec<u8>;
|
2020-06-15 04:36:25 +00:00
|
|
|
| ^^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error[E0605]: non-primitive cast: `*const u8` as `&u8`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0605.rs:6:5
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | v as &u8;
|
2021-05-06 00:09:02 +00:00
|
|
|
| ^^^^^^^^ invalid cast
|
|
|
|
|
|
|
|
|
help: consider borrowing the value
|
|
|
|
|
|
2021-10-04 19:15:02 +00:00
|
|
|
LL - v as &u8;
|
|
|
|
LL + &*v;
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0605`.
|