rust/src/test/ui/error-codes/E0605.stderr

20 lines
643 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0605]: non-primitive cast: `u8` as `std::vec::Vec<u8>`
--> $DIR/E0605.rs:13:5
|
2018-02-22 18:42:32 -06:00
LL | x as Vec<u8>; //~ ERROR E0605
2018-02-07 21:35:35 -06:00
| ^^^^^^^^^^^^
|
= note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
error[E0605]: non-primitive cast: `*const u8` as `&u8`
--> $DIR/E0605.rs:16:5
|
2018-02-22 18:42:32 -06:00
LL | v as &u8; //~ ERROR E0605
2018-02-07 21:35:35 -06:00
| ^^^^^^^^
|
= note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0605`.