2021-09-24 15:58:25 -05:00
|
|
|
error[E0605]: non-primitive cast: `Kind2` as `u8`
|
2022-04-05 22:45:30 -05:00
|
|
|
--> $DIR/issue-88621.rs:9:13
|
2021-09-24 15:58:25 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Kind2::Foo() as u8;
|
2024-02-08 21:49:44 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ an `as` expression can be used to convert enum types to numeric types only if the enum type is unit-only or field-less
|
|
|
|
|
|
|
|
|
= note: see https://doc.rust-lang.org/reference/items/enumerations.html#casting for more information
|
2021-09-24 15:58:25 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-09-24 15:58:25 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0605`.
|