]> git.lizzy.rs Git - rust.git/blob - src/test/ui/enum/enum-to-float-cast.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / enum / enum-to-float-cast.stderr
1 error[E0606]: casting `E` as `f32` is invalid
2   --> $DIR/enum-to-float-cast.rs:13:18
3    |
4 LL | static C0: f32 = E::L0 as f32; //~ ERROR casting
5    |                  ^^^^^^^^^^^^
6    |
7    = help: cast through an integer first
8
9 error[E0606]: casting `F` as `f32` is invalid
10   --> $DIR/enum-to-float-cast.rs:14:18
11    |
12 LL | static C1: f32 = F::H1 as f32; //~ ERROR casting
13    |                  ^^^^^^^^^^^^
14    |
15    = help: cast through an integer first
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0606`.