]> git.lizzy.rs Git - rust.git/blob - src/test/ui/enum/enum-to-float-cast-2.stderr
Rollup merge of #102092 - kxxt:patch-1, r=joshtriplett
[rust.git] / src / test / ui / enum / enum-to-float-cast-2.stderr
1 error[E0606]: casting `E` as `f32` is invalid
2   --> $DIR/enum-to-float-cast-2.rs:14:13
3    |
4 LL |     let a = E::L0 as f32;
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-2.rs:15:13
11    |
12 LL |     let c = F::H1 as f32;
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`.