blob: 191606d8dc53157efd02175703078f5b04d8655e [file] [log] [blame]
David Woodb16a3062018-08-08 12:28:261error[E0606]: casting `E` as `f32` is invalid
Mark Rousskov2a663552018-12-25 15:56:472 --> $DIR/enum-to-float-cast.rs:13:18
David Woodb16a3062018-08-08 12:28:263 |
Vadim Petrochenkovfa72a812019-03-09 12:03:444LL | static C0: f32 = E::L0 as f32;
David Woodb16a3062018-08-08 12:28:265 | ^^^^^^^^^^^^
6 |
7 = help: cast through an integer first
8
9error[E0606]: casting `F` as `f32` is invalid
Mark Rousskov2a663552018-12-25 15:56:4710 --> $DIR/enum-to-float-cast.rs:14:18
David Woodb16a3062018-08-08 12:28:2611 |
Vadim Petrochenkovfa72a812019-03-09 12:03:4412LL | static C1: f32 = F::H1 as f32;
David Woodb16a3062018-08-08 12:28:2613 | ^^^^^^^^^^^^
14 |
15 = help: cast through an integer first
16
17error: aborting due to 2 previous errors
18
19For more information about this error, try `rustc --explain E0606`.