2018-12-16 21:21:47 -06:00
|
|
|
error[E0605]: non-primitive cast: `NonNullary` as `isize`
|
2020-06-14 23:36:25 -05:00
|
|
|
--> $DIR/tag-variant-cast-non-nullary.rs:19:15
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let val = v as isize;
|
2020-06-14 23:36:25 -05:00
|
|
|
| ^^^^^^^^^^ help: consider using the `From` trait instead: `isize::from(v)`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2024-02-08 21:49:44 -06:00
|
|
|
= note: 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
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0605`.
|